mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
Updated Nuget packages.
This commit is contained in:
+13
@@ -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
|
||||
Reference in New Issue
Block a user