Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Commit e260e79

Browse files
authored
Fixing the recent CLI test failures around ASP.NETcore in the orchestrated build: adding a 'dotnet-corefxlab' feed. (#8536)
1 parent 7f39cc3 commit e260e79

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build/NugetConfigFile.targets

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@
2828
<add key="xunit" value="https://www.myget.org/F/xunit/api/v3/index.json" />
2929
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
3030
<add key="vstest" value="https://dotnet.myget.org/F/vstest/api/v3/index.json" />
31-
<add key="web-api" value="https://dotnet.myget.org/F/dotnet-web/api/v3/index.json" />
32-
<add key="symreader-native" value="https://dotnet.myget.org/F/symreader-native/api/v3/index.json" />
33-
<add key="nuget-build" value="https://dotnet.myget.org/F/nuget-build/api/v3/index.json" />
31+
<add key="nuget-build" value="https://dotnet.myget.org/F/nuget-build/api/v3/index.json" />
32+
<add key="dotnet-corefxlab" value="https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json" />
3433
]]>
3534
</NugetConfigCLIFeeds>
3635

test/dotnet-new.Tests/GivenThatIWantANewApp.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void RestoreDoesNotUseAnyCliProducedPackagesOnItsTemplates()
4747
// For testing the 2.1 templates - some of their packages are currently only in private feeds.
4848
var configFile = Path.Combine(rootPath, "NuGet.Config");
4949
AspNetNuGetConfiguration.WriteNuGetConfigWithAspNetPrivateFeeds(configFile);
50-
// For "normal" builds, once the packages needed for 2.1 templates are in the public feeds
50+
// For "normal" builds, once the packages needed for 2.1 templates are in the public feeds
5151
//var configFile = Path.Combine(RepoDirectoriesProvider.RepoRoot, "NuGet.Config");
5252

5353
foreach (string cSharpTemplate in cSharpTemplates)

test/dotnet-new.Tests/NuGet.tempaspnetpatch.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@
66
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
77
<add key="DotnetCore" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
88
<add key="aspnetcore-dev" value="https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json" />
9+
<add key="dotnet-corefxlab" value="https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json" />
910
</packageSources>
1011
</configuration>

0 commit comments

Comments
 (0)