Reorder feeds to prevent issue where a package with the same name and version has been rebuilt

Update package versions in tests
This commit is contained in:
Mike Lorbetske 2017-02-21 17:10:53 -08:00
parent e145ca88e4
commit 0aa4e83cb8
2 changed files with 3 additions and 3 deletions

View file

@ -3,13 +3,13 @@
<packageSources>
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
<clear />
<add key="AspNet1.1" value="https://dotnet.myget.org/F/aspnet-1-1-1-patch/api/v3/index.json" />
<add key="AspNet1.0" value="https://dotnet.myget.org/F/aspnet-1-0-4-patch/api/v3/index.json" />
<add key="templating" value="https://dotnet.myget.org/F/templating/api/v3/index.json" />
<add key="dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
<add key="cli-deps" value="https://dotnet.myget.org/F/cli-deps/api/v3/index.json" />
<add key="roslyn" value="https://dotnet.myget.org/f/roslyn/api/v3/index.json" />
<add key="xunit" value="https://www.myget.org/F/xunit/api/v3/index.json" />
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="AspNet1.1" value="https://dotnet.myget.org/F/aspnet-1-1-1-patch/api/v3/index.json" />
<add key="AspNet1.0" value="https://dotnet.myget.org/F/aspnet-1-0-4-patch/api/v3/index.json" />
</packageSources>
</configuration>

View file

@ -118,7 +118,7 @@ A command is running to initially populate your local package cache, to improve
_nugetCacheFolder
.GetDirectory("microsoft.aspnetcore.mvc")
.Should().HaveDirectories(new string[] { "1.0.2", "1.1.1" });
.Should().HaveDirectories(new string[] { "1.0.3", "1.1.2" });
}
private string GetDotnetVersion()