File tree 4 files changed +18
-4
lines changed
4 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 2
2
<configuration >
3
3
<packageSources >
4
4
<clear />
5
- <add key = " NuGet" value = " https://api.nuget.org/v3/index.json " / >
5
+ <!-- NuGet feeds should be set in build/sources.props, not here -- >
6
6
</packageSources >
7
7
</configuration >
Original file line number Diff line number Diff line change 1
1
<Project >
2
+ <Import Project =" sources.props" />
2
3
<Import Project =" dependencies.props" />
3
4
<Import Project =" ..\version.props" />
4
5
Original file line number Diff line number Diff line change 17
17
</PropertyGroup >
18
18
19
19
<!--
20
- Attempt to keep these mostly aligned with https://github.com/dotnet/sdk /blob/master/build/DependencyVersions.props
20
+ Attempt to keep these mostly aligned with https://github.com/dotnet/cli /blob/master/build/DependencyVersions.props
21
21
and with the version of MSBuild used by KoreBuild.
22
22
MSBuild will prefer the assemblies that ship in the .NET Core SDK and MSbuild. The dependency versions here don't matter
23
23
as long as the version we compile for is binary compatible with what the .NET Core SDK uses.
24
24
-->
25
25
<PropertyGroup >
26
- <MicrosoftBuildVersion >15.3.409 </MicrosoftBuildVersion >
26
+ <MicrosoftBuildVersion >15.5.0-preview-000172-1103937 </MicrosoftBuildVersion >
27
27
<JsonNetInMSBuildVersion >9.0.1</JsonNetInMSBuildVersion >
28
- <NuGetInMSBuildVersion >4.3.0 </NuGetInMSBuildVersion >
28
+ <NuGetInMSBuildVersion >4.5.0-preview2-4529 </NuGetInMSBuildVersion >
29
29
</PropertyGroup >
30
30
</Project >
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/nuget-build/api/v3/index.json;
9
+ https://dotnet.myget.org/F/msbuild/api/v3/index.json;
10
+ https://api.nuget.org/v3/index.json;
11
+ </RestoreSources >
12
+ </PropertyGroup >
13
+ </Project >
You can’t perform that action at this time.
0 commit comments