mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
Updated Nuget packages.
This commit is contained in:
parent
830eab57aa
commit
2deb6822b0
189 changed files with 32012 additions and 14593 deletions
13
packages/EntityFramework.4.3.0/tools/init.ps1
vendored
Normal file
13
packages/EntityFramework.4.3.0/tools/init.ps1
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
param($installPath, $toolsPath, $package, $project)
|
||||
|
||||
if ([System.AppDomain]::CurrentDomain.GetAssemblies() | ?{ $_.GetName().Name -eq 'EntityFramework' })
|
||||
{
|
||||
Write-Warning 'There is already a version of EntityFramework.dll loaded. You may need to restart Visual Studio for the commands to work properly.'
|
||||
}
|
||||
|
||||
if (Get-Module | ?{ $_.Name -eq 'EntityFramework' })
|
||||
{
|
||||
Remove-Module 'EntityFramework'
|
||||
}
|
||||
|
||||
Import-Module (Join-Path $toolsPath 'EntityFramework.psd1') -ArgumentList $installPath
|
Loading…
Add table
Add a link
Reference in a new issue