
* release/2.1.1xx: (21 commits) 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 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 Build trigger commit. Update to consume aspnetcore 2.0.6-10008 notimestamp build Update to consume aspnetcore 2.0.6-10008 timestamp build Updating the templates version to 1.0.0-beta3-20171117-314. We had it at an older version by mistake. Making a document only commit to trigger another build of the CLI. Add 2.0.5 ASP.NET store to native installers. Update to consume aspnetcore 2.0.6-10007 Fix Windows servicing builds. Updating the SDK dependency to 15.5.0-preview-62518-04 to fix the signing issue Update runtime and branding to 2.0.6. ... Conflicts: build/Branding.props build/DependencyVersions.props build/NugetConfigFile.targets build/Version.props packaging/osx/clisdk/resources/cs.lproj/conclusion.html packaging/osx/clisdk/resources/de.lproj/conclusion.html packaging/osx/clisdk/resources/en.lproj/conclusion.html packaging/osx/clisdk/resources/es.lproj/conclusion.html packaging/osx/clisdk/resources/fr.lproj/conclusion.html packaging/osx/clisdk/resources/it.lproj/conclusion.html packaging/osx/clisdk/resources/ja.lproj/conclusion.html packaging/osx/clisdk/resources/ko.lproj/conclusion.html packaging/osx/clisdk/resources/pl.lproj/conclusion.html packaging/osx/clisdk/resources/pt-br.lproj/conclusion.html packaging/osx/clisdk/resources/ru.lproj/conclusion.html packaging/osx/clisdk/resources/tr.lproj/conclusion.html packaging/osx/clisdk/resources/zh-hans.lproj/conclusion.html packaging/osx/clisdk/resources/zh-hant.lproj/conclusion.html packaging/windows/clisdk/bundle.wxl
66 lines
2.8 KiB
XML
66 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="aspnet" value="https://dotnet.myget.org/F/aspnetcore-release/api/v3/index.json" />
|
|
<add key="websdkfeed" value="https://dotnet.myget.org/F/dotnet-web/api/v3/index.json" />
|
|
<add key="nuget-build" value="https://dotnet.myget.org/F/nuget-build/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" />
|
|
<add key="AspNetMaster" value="https://dotnet.myget.org/F/aspnetcore-master/api/v3/index.json" />
|
|
<add key="AspNetDev" value="https://dotnet.myget.org/F/aspnetcore-dev/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>
|