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:
Pranav K 2016-08-19 11:01:50 -07:00
parent dbe93ac6b1
commit 4f766a3fa5
3 changed files with 1 additions and 7 deletions

View File

@ -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>

View File

@ -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,
}; };

View File

@ -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>