
* upstream/release/2.1.2xx: (31 commits) Update SDK to 2.1.100-preview-62721-01 Updating the branding of the CLI to 2.1.103. Updating NuGet to 4.6.1-rtm-5019 Update SDK to 2.1.200-preview-62717-01 Updating the SDK to 2.1.200-preview-62716-06. Updating the SDK to 2.1.200-preview-62716-04 Update SDK to 2.1.200-preview-62715-08 Updating Roslyn to 2.8.0-beta2-62713-11 Updating the SDK version to 2.1.100-preview-62714-01 Updating the branding of the CLI to 2.1.102. Remove cli-deps from sources. Update Roslyn to 2.7.0-beta3-62707-11 add nuget-build myget feed as source Insert NuGet Build 4.7.0-preview1.4982 into cli Update to the 15.6 RTM version of the test SDK in templates Update to consume aspnetcore 2.0.6-10011 Updating TestPlatform to 15.6 RTM Updating runtime to 2.0.6. Update AspNetCore version Update the branding of the CLI to 2.1.101 ...
65 lines
2.8 KiB
XML
65 lines
2.8 KiB
XML
<Project ToolsVersion="15.0">
|
|
<Target Name="WriteNugetConfigFile">
|
|
|
|
<ItemGroup>
|
|
<NugetConfigPrivateFeeds Include="$(ExternalRestoreSources.Split(';'))" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<NugetConfigHeader>
|
|
<![CDATA[
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<packageSources>
|
|
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
|
|
<clear />
|
|
]]>
|
|
</NugetConfigHeader>
|
|
|
|
<NugetConfigCLIFeeds>
|
|
<![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" />
|
|
<add key="aspnetcore-dev" value="https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json" />
|
|
<add key="websdkfeed" value="https://dotnet.myget.org/F/dotnet-web/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="nuget-build" value="https://dotnet.myget.org/F/nuget-build/api/v3/index.json" />
|
|
<add key="dotnet-corefxlab" value="https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json" />
|
|
<add key="container-tools" value="https://www.myget.org/F/container-tools-for-visual-studio/api/v3/index.json" />
|
|
<add key="dotnet-msbuild" value="https://dotnet.myget.org/F/msbuild/api/v3/index.json" />
|
|
]]>
|
|
</NugetConfigCLIFeeds>
|
|
|
|
<NugetConfigSuffix>
|
|
<![CDATA[
|
|
</packageSources>
|
|
</configuration>
|
|
]]>
|
|
</NugetConfigSuffix>
|
|
|
|
</PropertyGroup>
|
|
|
|
<WriteLinesToFile File="$(GeneratedNuGetConfig)"
|
|
Lines="$(NugetConfigHeader)"
|
|
Overwrite="true" />
|
|
|
|
<WriteLinesToFile Condition="'$(ExternalRestoreSources)' != '' and '$(DotNetBuildOffline)' != 'true'"
|
|
File="$(GeneratedNuGetConfig)"
|
|
Lines="<add key="PrivateBlobFeed%(NugetConfigPrivateFeeds.Filename)" value="%(NugetConfigPrivateFeeds.Identity)" />"
|
|
Overwrite="false" />
|
|
|
|
<WriteLinesToFile Condition="'$(DotNetBuildOffline)' != 'true'"
|
|
File="$(GeneratedNuGetConfig)"
|
|
Lines="$(NugetConfigCLIFeeds)"
|
|
Overwrite="false" />
|
|
|
|
<WriteLinesToFile File="$(GeneratedNuGetConfig)"
|
|
Lines="$(NugetConfigSuffix)"
|
|
Overwrite="false" />
|
|
|
|
</Target>
|
|
</Project>
|