2017-11-28 12:54:32 -08:00
<Project ToolsVersion="15.0">
<Target Name="WriteNugetConfigFile">
2017-11-28 17:12:44 -08:00
<ItemGroup>
<NugetConfigPrivateFeeds Include="$(ExternalRestoreSources.Split(';'))" />
</ItemGroup>
2017-11-28 12:54:32 -08:00
<PropertyGroup>
<NugetConfigHeader>
2017-11-28 17:12:44 -08:00
<![CDATA[
<?xml version="1.0" encoding="utf-8"?>
<configuration>
2017-12-04 14:32:56 -08:00
<packageSources>
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
<clear />
2017-11-28 17:12:44 -08:00
]]>
2017-11-28 12:54:32 -08:00
</NugetConfigHeader>
2017-11-29 10:22:27 -08:00
<NugetConfigCLIFeeds>
2017-11-28 17:12:44 -08:00
<![CDATA[
<add key="BlobFeed" value="https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json" />
<add key="templating" value="https://dotnet.myget.org/F/templating/api/v3/index.json" />
2018-01-05 19:27:24 -08:00
<add key="aspnetcore-dev" value="https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json" />
2017-11-28 17:12:44 -08:00
<add key="websdkfeed" value="https://dotnet.myget.org/F/dotnet-web/api/v3/index.json" />
<add key="cli-deps" value="https://dotnet.myget.org/F/cli-deps/api/v3/index.json" />
<add key="roslyn" value="https://dotnet.myget.org/f/roslyn/api/v3/index.json" />
<add key="symreader-native" value="https://dotnet.myget.org/f/symreader-native/api/v3/index.json" />
<add key="xunit" value="https://www.myget.org/F/xunit/api/v3/index.json" />
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="vstest" value="https://dotnet.myget.org/F/vstest/api/v3/index.json" />
<add key="web-api" value="https://dotnet.myget.org/F/dotnet-web/api/v3/index.json" />
<add key="symreader-native" value="https://dotnet.myget.org/F/symreader-native/api/v3/index.json" />
2017-12-05 14:14:02 -08:00
<add key="nuget-build" value="https://dotnet.myget.org/F/nuget-build/api/v3/index.json" />
2017-11-28 17:12:44 -08:00
]]>
2017-11-29 10:22:27 -08:00
</NugetConfigCLIFeeds>
2017-11-28 12:54:32 -08:00
<NugetConfigSuffix>
2017-11-28 17:12:44 -08:00
<![CDATA[
2017-12-04 14:32:56 -08:00
</packageSources>
2017-11-28 17:12:44 -08:00
</configuration>
]]>
2017-11-28 12:54:32 -08:00
</NugetConfigSuffix>
2017-11-29 10:22:27 -08:00
</PropertyGroup>
2017-11-28 12:54:32 -08:00
<WriteLinesToFile File="$(GeneratedNuGetConfig)"
Lines="$(NugetConfigHeader)"
Overwrite="true" />
2017-11-29 10:22:27 -08:00
<WriteLinesToFile Condition="'$(ExternalRestoreSources)' != '' and '$(DotNetBuildOffline)' != 'true'"
2017-11-28 12:54:32 -08:00
File="$(GeneratedNuGetConfig)"
2017-11-28 17:12:44 -08:00
Lines="<add key="PrivateBlobFeed" value="%(NugetConfigPrivateFeeds.Identity)" />"
2017-11-28 12:54:32 -08:00
Overwrite="false" />
<WriteLinesToFile Condition="'$(DotNetBuildOffline)' != 'true'"
File="$(GeneratedNuGetConfig)"
2017-11-29 10:22:27 -08:00
Lines="$(NugetConfigCLIFeeds)"
2017-11-28 12:54:32 -08:00
Overwrite="false" />
<WriteLinesToFile File="$(GeneratedNuGetConfig)"
Lines="$(NugetConfigSuffix)"
Overwrite="false" />
</Target>
</Project>