mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 01:58:29 +00:00
Changes: - Remove floating versions - Disable myget feeds during a Universe build - Use package-specific MSBuild variables. Pattern = `packageId.Pascalize() + "PackageVersion"`, with a few exceptions.
18 lines
769 B
XML
18 lines
769 B
XML
<Project>
|
|
<Import Project="$(DotNetRestoreSourcePropsPath)" Condition="'$(DotNetRestoreSourcePropsPath)' != ''"/>
|
|
|
|
<PropertyGroup>
|
|
<RestoreSources>$(DotNetRestoreSources)</RestoreSources>
|
|
<RestoreSources Condition="'$(DotNetBuildOffline)' != 'true' AND '$(AspNetUniverseBuildOffline)' != 'true' ">
|
|
$(RestoreSources);
|
|
https://dotnet.myget.org/F/aspnet-2-0-2-october2017-patch/api/v3/index.json;
|
|
https://dotnet.myget.org/F/aspnetcore-master/api/v3/index.json;
|
|
https://dotnet.myget.org/F/aspnetcore-tools/api/v3/index.json;
|
|
</RestoreSources>
|
|
<RestoreSources Condition="'$(DotNetBuildOffline)' != 'true'">
|
|
$(RestoreSources);
|
|
https://api.nuget.org/v3/index.json;
|
|
</RestoreSources>
|
|
</PropertyGroup>
|
|
</Project>
|