2017-11-28 20:54:32 +00:00
|
|
|
<Project ToolsVersion="15.0">
|
|
|
|
<Target Name="WriteNugetConfigFile">
|
|
|
|
|
2017-11-29 01:12:44 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<NugetConfigPrivateFeeds Include="$(ExternalRestoreSources.Split(';'))" />
|
|
|
|
</ItemGroup>
|
2018-02-05 23:52:17 +00:00
|
|
|
|
2017-11-28 20:54:32 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<NugetConfigHeader>
|
2017-11-29 01:12:44 +00:00
|
|
|
<![CDATA[
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<configuration>
|
2017-12-04 22:32:56 +00:00
|
|
|
<packageSources>
|
|
|
|
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
|
|
|
|
<clear />
|
2017-11-29 01:12:44 +00:00
|
|
|
]]>
|
2017-11-28 20:54:32 +00:00
|
|
|
</NugetConfigHeader>
|
|
|
|
|
2017-11-29 18:22:27 +00:00
|
|
|
<NugetConfigCLIFeeds>
|
2017-11-29 01:12:44 +00:00
|
|
|
<![CDATA[
|
|
|
|
<add key="BlobFeed" value="https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json" />
|
2018-03-19 16:57:09 +00:00
|
|
|
<add key="aspnetcore-release" value="https://dotnet.myget.org/F/aspnetcore-release/api/v3/index.json" />
|
2018-04-11 21:28:53 +00:00
|
|
|
<add key="roslyn" value="https://dotnet.myget.org/f/roslyn/api/v3/index.json" />
|
2018-04-13 16:59:06 +00:00
|
|
|
<add key="nuget-build" value="https://dotnet.myget.org/F/nuget-build/api/v3/index.json" />
|
2018-04-11 21:19:06 +00:00
|
|
|
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
|
2018-04-11 21:33:50 +00:00
|
|
|
<add key="container-tools" value="https://www.myget.org/F/container-tools-for-visual-studio/api/v3/index.json" />
|
2018-04-20 21:11:06 +00:00
|
|
|
<add key="linux-musl-bootstrap-feed" value="https://dotnetfeed.blob.core.windows.net/orchestrated-release-2-1/20180420-03/aspnet-inputs/index.json" />
|
2017-11-29 01:12:44 +00:00
|
|
|
]]>
|
2017-11-29 18:22:27 +00:00
|
|
|
</NugetConfigCLIFeeds>
|
2017-11-28 20:54:32 +00:00
|
|
|
|
|
|
|
<NugetConfigSuffix>
|
2017-11-29 01:12:44 +00:00
|
|
|
<![CDATA[
|
2017-12-04 22:32:56 +00:00
|
|
|
</packageSources>
|
2017-11-29 01:12:44 +00:00
|
|
|
</configuration>
|
|
|
|
]]>
|
2017-11-28 20:54:32 +00:00
|
|
|
</NugetConfigSuffix>
|
2018-02-05 23:52:17 +00:00
|
|
|
|
2017-11-29 18:22:27 +00:00
|
|
|
</PropertyGroup>
|
2017-11-28 20:54:32 +00:00
|
|
|
|
|
|
|
<WriteLinesToFile File="$(GeneratedNuGetConfig)"
|
|
|
|
Lines="$(NugetConfigHeader)"
|
|
|
|
Overwrite="true" />
|
2018-02-05 23:52:17 +00:00
|
|
|
|
2017-11-29 18:22:27 +00:00
|
|
|
<WriteLinesToFile Condition="'$(ExternalRestoreSources)' != '' and '$(DotNetBuildOffline)' != 'true'"
|
2017-11-28 20:54:32 +00:00
|
|
|
File="$(GeneratedNuGetConfig)"
|
2018-01-22 03:19:25 +00:00
|
|
|
Lines="<add key="PrivateBlobFeed%(NugetConfigPrivateFeeds.Filename)" value="%(NugetConfigPrivateFeeds.Identity)" />"
|
2017-11-28 20:54:32 +00:00
|
|
|
Overwrite="false" />
|
|
|
|
|
|
|
|
<WriteLinesToFile Condition="'$(DotNetBuildOffline)' != 'true'"
|
|
|
|
File="$(GeneratedNuGetConfig)"
|
2017-11-29 18:22:27 +00:00
|
|
|
Lines="$(NugetConfigCLIFeeds)"
|
2017-11-28 20:54:32 +00:00
|
|
|
Overwrite="false" />
|
|
|
|
|
|
|
|
<WriteLinesToFile File="$(GeneratedNuGetConfig)"
|
|
|
|
Lines="$(NugetConfigSuffix)"
|
|
|
|
Overwrite="false" />
|
|
|
|
|
|
|
|
</Target>
|
|
|
|
</Project>
|