-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update ProdCon to 20180820-01-1963377 (release/2.2) (#694)
* Update ProdCon to 20180820-01-1963377 * Add patch to fix websdk TargetFrameworks override
- Loading branch information
1 parent
022bfa8
commit 316186a
Showing
12 changed files
with
58 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
https://dotnetfeed.blob.core.windows.net/orchestrated-release-2-2/20180815-01/final/index.json | ||
https://dotnetfeed.blob.core.windows.net/orchestrated-release-2-2/20180820-01/final/index.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
patches/websdk/0001-Fix-DotNetBuildFromSource-framework-override.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
From 646cb1bace928c3392116f6687127b25562e99b6 Mon Sep 17 00:00:00 2001 | ||
From: Davis Goodin <[email protected]> | ||
Date: Tue, 21 Aug 2018 14:19:23 -0500 | ||
Subject: [PATCH] Fix DotNetBuildFromSource framework override | ||
|
||
Makes the override single framework match the usual one. netstandard1.3 was | ||
changed to netcoreapp2.0 for TargetFrameworks, but not the override. This also | ||
required including the override in test project, probably because the change | ||
was from netstandard to netcoreapp which isn't compatible with net46. | ||
|
||
https://github.com/aspnet/websdk/issues/398 is required to remove this patch. | ||
--- | ||
.../Microsoft.NET.Sdk.Publish.Tasks.csproj | 2 +- | ||
.../Microsoft.NET.Sdk.Publish.Tasks.Tests.csproj | 1 + | ||
2 files changed, 2 insertions(+), 1 deletion(-) | ||
|
||
diff --git a/src/Publish/Microsoft.NET.Sdk.Publish.Tasks/Microsoft.NET.Sdk.Publish.Tasks.csproj b/src/Publish/Microsoft.NET.Sdk.Publish.Tasks/Microsoft.NET.Sdk.Publish.Tasks.csproj | ||
index 72a50d6..2d257e4 100644 | ||
--- a/src/Publish/Microsoft.NET.Sdk.Publish.Tasks/Microsoft.NET.Sdk.Publish.Tasks.csproj | ||
+++ b/src/Publish/Microsoft.NET.Sdk.Publish.Tasks/Microsoft.NET.Sdk.Publish.Tasks.csproj | ||
@@ -8,7 +8,7 @@ | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net46;netcoreapp2.0</TargetFrameworks> | ||
- <TargetFrameworks Condition=" '$(DotNetBuildFromSource)' == 'true' ">netstandard1.3</TargetFrameworks> | ||
+ <TargetFrameworks Condition=" '$(DotNetBuildFromSource)' == 'true' ">netcoreapp2.0</TargetFrameworks> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<OutputPath>$(WebSdkRoot)\bin\$(Configuration)\</OutputPath> | ||
<IntermediateOutputPath>$(WebSdkRoot)\obj\$(Configuration)\</IntermediateOutputPath> | ||
diff --git a/test/Publish/Microsoft.NET.Sdk.Publish.Tasks.Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests.csproj b/test/Publish/Microsoft.NET.Sdk.Publish.Tasks.Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests.csproj | ||
index a12de84..a90257c 100644 | ||
--- a/test/Publish/Microsoft.NET.Sdk.Publish.Tasks.Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests.csproj | ||
+++ b/test/Publish/Microsoft.NET.Sdk.Publish.Tasks.Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests.csproj | ||
@@ -1,6 +1,7 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>net46;netcoreapp2.0</TargetFrameworks> | ||
+ <TargetFrameworks Condition=" '$(DotNetBuildFromSource)' == 'true' ">netcoreapp2.0</TargetFrameworks> | ||
<AssemblyName>Microsoft.NET.Sdk.Publish.Tasks.Tests</AssemblyName> | ||
</PropertyGroup> | ||
|
||
-- | ||
2.17.1.windows.2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule cli
updated
3 files
+1 −1 | build/DependencyVersions.props | |
+1 −1 | packaging/windows/clisdk/bundle.wxs | |
+9 −4 | test/dotnet-publish.Tests/GivenDotnetPublishPublishesProjects.cs |
Submodule coreclr
updated
4 files
+3 −3 | dependencies.props | |
+1 −1 | src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Windows_NT.Microsoft.NETCore.Runtime.CoreCLR.props | |
+11 −0 | src/build.proj | |
+6 −0 | src/sign.builds |
Submodule corefx
updated
17 files
Submodule websdk
updated
from 17e145 to a69610