Fix issues with feeds used to restore testapps
* Remove duplicated feeds from testapps/NuGet.config * Don't specify feeds as part of restore. Let testapps/NuGet.config dictate this. * Switch to dotnet.myget.org
This commit is contained in:
parent
dbe93ac6b1
commit
4f766a3fa5
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<configuration>
|
<configuration>
|
||||||
<packageSources>
|
<packageSources>
|
||||||
<add key="AspNetVNext" value="https://www.myget.org/F/aspnetcidev/api/v3/index.json" />
|
<add key="AspNetCore" value="https://dotnet.myget.org/F/aspnetcore-ci-dev/api/v3/index.json" />
|
||||||
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
|
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
|
||||||
</packageSources>
|
</packageSources>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|
|
||||||
|
|
@ -91,10 +91,6 @@ namespace Microsoft.AspNetCore.Mvc.Razor.Precompilation
|
||||||
var args = new[]
|
var args = new[]
|
||||||
{
|
{
|
||||||
Path.Combine(applicationDirectory, "project.json"),
|
Path.Combine(applicationDirectory, "project.json"),
|
||||||
"-s",
|
|
||||||
packagesDirectory,
|
|
||||||
"-s",
|
|
||||||
ApplicationPaths.ArtifactPackagesDirectory,
|
|
||||||
"--packages",
|
"--packages",
|
||||||
TempRestoreDirectory,
|
TempRestoreDirectory,
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<configuration>
|
<configuration>
|
||||||
<packageSources>
|
<packageSources>
|
||||||
<add key="AspNetVNext" value="https://www.myget.org/F/aspnetcidev/api/v3/index.json" />
|
|
||||||
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
|
|
||||||
<add key="LocalArtifacts" value="../artifacts/build" />
|
<add key="LocalArtifacts" value="../artifacts/build" />
|
||||||
</packageSources>
|
</packageSources>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue