This repository was archived by the owner on Feb 23, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +19
-4
lines changed Expand file tree Collapse file tree 4 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 3
3
4
4
<Import Project =" version.props" />
5
5
<Import Project =" build\dependencies.props" />
6
+ <Import Project =" build\sources.props" />
6
7
7
8
<PropertyGroup >
8
9
<Product >Microsoft ASP.NET Core</Product >
Original file line number Diff line number Diff line change 2
2
<configuration >
3
3
<packageSources >
4
4
<clear />
5
- <add key =" AspNetCore" value =" https://dotnet.myget.org/F/aspnetcore-ci-dev/api/v3/index.json" />
6
- <add key =" AspNetCoreTools" value =" https://dotnet.myget.org/F/aspnetcore-tools/api/v3/index.json" />
7
- <add key =" NuGet" value =" https://api.nuget.org/v3/index.json" />
5
+ <!-- Restore sources should be defined in build/sources.props. -->
8
6
</packageSources >
9
7
</configuration >
Original file line number Diff line number Diff line change 2
2
<PropertyGroup >
3
3
<!-- These properties are use by the automation that updates dependencies.props -->
4
4
<LineupPackageId >Internal.AspNetCore.Universe.Lineup</LineupPackageId >
5
- <LineupPackageRestoreSource >https://dotnet.myget.org/F/aspnetcore-ci- dev/api/v3/index.json</LineupPackageRestoreSource >
5
+ <LineupPackageRestoreSource >https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json</LineupPackageRestoreSource >
6
6
</PropertyGroup >
7
7
</Project >
Original file line number Diff line number Diff line change
1
+ <Project >
2
+ <Import Project =" $(DotNetRestoreSourcePropsPath)" Condition =" '$(DotNetRestoreSourcePropsPath)' != ''" />
3
+
4
+ <PropertyGroup Label =" RestoreSources" >
5
+ <RestoreSources >$(DotNetRestoreSources)</RestoreSources >
6
+ <RestoreSources Condition =" '$(DotNetBuildOffline)' != 'true' AND '$(AspNetUniverseBuildOffline)' != 'true' " >
7
+ $(RestoreSources);
8
+ https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json;
9
+ https://dotnet.myget.org/F/aspnetcore-tools/api/v3/index.json;
10
+ </RestoreSources >
11
+ <RestoreSources Condition =" '$(DotNetBuildOffline)' != 'true'" >
12
+ $(RestoreSources);
13
+ https://api.nuget.org/v3/index.json;
14
+ </RestoreSources >
15
+ </PropertyGroup >
16
+ </Project >
You can’t perform that action at this time.
0 commit comments