Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/blame/commit/eee24aff1dce8291614adc64e9db332b37715ab7/packages/EntityFramework.4.3.0/tools/init.ps1
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
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
|