Skip to content
This repository has been archived by the owner on Feb 13, 2019. It is now read-only.

Update NuGet unstable feeds to point to recent RC2 #708

Merged
merged 1 commit into from
May 13, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion templates/_nuget.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
<!--To inherit the global NuGet package sources remove the <clear /> line below -->
<clear />
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" /><% if(unstable){ %>
<add key="aspnetrelease" value="https://www.myget.org/F/aspnetrelease/api/v3/index.json" /><% } %>
<add key="aspnetrelease" value="https://www.myget.org/F/aspnetrc2/api/v3/index.json" /><% } %>
</packageSources>
</configuration>
2 changes: 1 addition & 1 deletion test/subgenerators.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ describe('Subgenerators without arguments tests', function() {
var filename = 'NuGet.config';
util.goCreateWithArgs('nuget', [arg]);
util.fileCheck('should create ' + filename + ' file with unstable feed', filename);
util.fileContentCheck(filename, 'Check file content for unstable feed', /https:\/\/www\.myget\.org\/F\/aspnetrelease\/api\/v3/);
util.fileContentCheck(filename, 'Check file content for unstable feed', /https:\/\/www\.myget\.org\/F\/aspnetrc2\/api\/v3/);
});

describe('aspnet:readme creates README.md', function() {
Expand Down