This repository was archived by the owner on Nov 20, 2018. It is now read-only.
File tree 3 files changed +16
-4
lines changed
3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 1
1
<Project >
2
+ <Import Project =" build\sources.props" />
2
3
<Import Project =" build\dependencies.props" />
3
4
<Import Project =" build\dependencies.targets" />
4
5
<Import Project =" build\dependencies.g.targets" Condition =" Exists('build\dependencies.g.targets') AND '$(DesignTimeBuild)' != 'true'" />
Original file line number Diff line number Diff line change 2
2
<configuration >
3
3
<packageSources >
4
4
<clear />
5
- <add key =" AspNetCorePatch" value =" https://dotnet.myget.org/F/aspnet-2-0-2-october2017-patch/api/v3/index.json" />
6
- <add key =" AspNetCore" value =" https://dotnet.myget.org/F/aspnetcore-master/api/v3/index.json" />
7
- <add key =" AspNetCoreTools" value =" https://dotnet.myget.org/F/aspnetcore-tools/api/v3/index.json" />
8
- <add key =" NuGet" value =" https://api.nuget.org/v3/index.json" />
5
+ <!-- Restore sources should be defined in build/sources.props. -->
9
6
</packageSources >
10
7
</configuration >
Original file line number Diff line number Diff line change
1
+ <Project >
2
+ <Import Project =" $(DotNetRestoreSourcePropsPath)" Condition =" '$(DotNetRestoreSourcePropsPath)' != ''" />
3
+
4
+ <PropertyGroup >
5
+ <RestoreSources >$(DotNetRestoreSources)</RestoreSources >
6
+ <RestoreSources Condition =" '$(DotNetBuildOffline)' != 'true'" >
7
+ $(RestoreSources);
8
+ https://dotnet.myget.org/F/aspnet-2-0-2-october2017-patch/api/v3/index.json;
9
+ https://dotnet.myget.org/F/aspnetcore-master/api/v3/index.json;
10
+ https://dotnet.myget.org/F/aspnetcore-tools/api/v3/index.json;
11
+ https://api.nuget.org/v3/index.json;
12
+ </RestoreSources >
13
+ </PropertyGroup >
14
+ </Project >
You can’t perform that action at this time.
0 commit comments