-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
56 additions
and
52 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
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,39 +1,37 @@ | ||
From 80531576c3f4dcfe863ab513094e8e65aceb962d Mon Sep 17 00:00:00 2001 | ||
From 4fed51358288e646b82f4fd598435f125f985177 Mon Sep 17 00:00:00 2001 | ||
From: ta264 <[email protected]> | ||
Date: Fri, 29 Jan 2021 19:25:11 +0000 | ||
Subject: [PATCH] freebsd support | ||
Date: Fri, 26 Feb 2021 08:42:34 +0000 | ||
Subject: [PATCH] FreeBSD support | ||
|
||
--- | ||
Directory.Build.props | 1 + | ||
NuGet.config | 1 + | ||
eng/Dependencies.props | 1 + | ||
eng/Versions.props | 2 +- | ||
.../App.Runtime/src/Microsoft.AspNetCore.App.Runtime.csproj | 2 +- | ||
5 files changed, 5 insertions(+), 2 deletions(-) | ||
Directory.Build.props | 1 + | ||
eng/Dependencies.props | 1 + | ||
2 files changed, 2 insertions(+) | ||
|
||
diff --git a/Directory.Build.props b/Directory.Build.props | ||
index 07e3d34055..ac32e584ac 100644 | ||
index f2f54bab5d..cd41aba973 100644 | ||
--- a/Directory.Build.props | ||
+++ b/Directory.Build.props | ||
@@ -160,6 +160,7 @@ | ||
win-x86; | ||
win-arm; | ||
@@ -163,6 +163,7 @@ | ||
win-arm64; | ||
+ freebsd-x64; | ||
osx-x64; | ||
osx-arm64; | ||
+ freebsd-x64; | ||
linux-musl-x64; | ||
linux-musl-arm; | ||
linux-musl-arm64; | ||
diff --git a/eng/Dependencies.props b/eng/Dependencies.props | ||
index 36a24451f0..5a5a2fa9dd 100644 | ||
index 4858ba89c5..853b455267 100644 | ||
--- a/eng/Dependencies.props | ||
+++ b/eng/Dependencies.props | ||
@@ -91,6 +91,7 @@ and are generated based on the last package release. | ||
<LatestPackageReference Include="Microsoft.NETCore.App.Runtime.win-x86" /> | ||
<LatestPackageReference Include="Microsoft.NETCore.App.Runtime.win-arm" /> | ||
<LatestPackageReference Include="Microsoft.NETCore.App.Runtime.win-arm64" /> | ||
+ <LatestPackageReference Include="Microsoft.NETCore.App.Runtime.freebsd-x64" /> | ||
<LatestPackageReference Include="Microsoft.NETCore.App.Runtime.osx-x64" /> | ||
<LatestPackageReference Include="Microsoft.NETCore.App.Runtime.osx-arm64" /> | ||
+ <LatestPackageReference Include="Microsoft.NETCore.App.Runtime.freebsd-x64" /> | ||
<LatestPackageReference Include="Microsoft.NETCore.App.Runtime.linux-x64" /> | ||
<LatestPackageReference Include="Microsoft.NETCore.App.Runtime.linux-arm" /> | ||
2.25.1 | ||
<LatestPackageReference Include="Microsoft.NETCore.App.Runtime.linux-arm64" /> | ||
-- | ||
2.30.0 | ||
|
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,38 +1,36 @@ | ||
From ecfb7edc726e8de389b573d901be73e20e9027bf Mon Sep 17 00:00:00 2001 | ||
From 3cd24046afa9c2ab5644b1f299a92cbc9c5b82e0 Mon Sep 17 00:00:00 2001 | ||
From: ta264 <[email protected]> | ||
Date: Mon, 1 Feb 2021 17:22:10 +0000 | ||
Subject: [PATCH] freebsd support | ||
Date: Fri, 26 Feb 2021 09:08:27 +0000 | ||
Subject: [PATCH] FreeBSD support | ||
|
||
--- | ||
NuGet.config | 4 ++-- | ||
src/redist/targets/GenerateBundledVersions.targets | 4 ++-- | ||
src/redist/targets/GenerateBundledVersions.targets | 3 ++- | ||
src/redist/targets/GetRuntimeInformation.targets | 2 +- | ||
3 files changed, 5 insertions(+), 5 deletions(-) | ||
2 files changed, 3 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/src/redist/targets/GenerateBundledVersions.targets b/src/redist/targets/GenerateBundledVersions.targets | ||
index 43b35ea06..00c2520b3 100644 | ||
index 51866d564..13ff7a8e1 100644 | ||
--- a/src/redist/targets/GenerateBundledVersions.targets | ||
+++ b/src/redist/targets/GenerateBundledVersions.targets | ||
@@ -73,7 +73,7 @@ | ||
|
||
<NetCore31RuntimePackRids Include="@(NetCore30RuntimePackRids)"/> | ||
|
||
- <NetCore5AppHostRids Include="@(NetCore31RuntimePackRids)"/> | ||
+ <NetCore5AppHostRids Include="@(NetCore31RuntimePackRids);freebsd-x64;"/> | ||
@@ -79,6 +79,7 @@ | ||
<Net50AppHostRids Include=" | ||
@(NetCore31RuntimePackRids); | ||
linux-musl-arm; | ||
+ freebsd-x64; | ||
"/> | ||
|
||
<NetCore5RuntimePackRids Include=" | ||
@(NetCore5AppHostRids); | ||
@@ -108,7 +108,7 @@ | ||
<Crossgen2SupportedRids Include="linux-musl-x64;linux-x64;win-x64" /> | ||
<Net50RuntimePackRids Include=" | ||
@@ -115,7 +116,7 @@ | ||
<Crossgen2SupportedRids Include="@(Net50Crossgen2SupportedRids)" /> | ||
|
||
<AspNetCore31RuntimePackRids Include="@(AspNetCore30RuntimePackRids)" /> | ||
- <AspNetCore50RuntimePackRids Include="@(AspNetCore31RuntimePackRids);win-arm64" /> | ||
+ <AspNetCore50RuntimePackRids Include="@(AspNetCore31RuntimePackRids);win-arm64;freebsd-x64" /> | ||
<AspNetCoreRuntimePackRids Include="@(AspNetCore50RuntimePackRids)" /> | ||
- <AspNetCore50RuntimePackRids Include="@(AspNetCore31RuntimePackRids);linux-musl-arm;win-arm64" /> | ||
+ <AspNetCore50RuntimePackRids Include="@(AspNetCore31RuntimePackRids);linux-musl-arm;win-arm64;freebsd-x64" /> | ||
<AspNetCoreRuntimePackRids Include="@(AspNetCore50RuntimePackRids);osx-arm64" /> | ||
|
||
<WindowsDesktop30RuntimePackRids Include="win-x64;win-x86" /> | ||
diff --git a/src/redist/targets/GetRuntimeInformation.targets b/src/redist/targets/GetRuntimeInformation.targets | ||
index 9f53268ab..0ba2fc8dc 100644 | ||
index ce6e3b14c..015845125 100644 | ||
--- a/src/redist/targets/GetRuntimeInformation.targets | ||
+++ b/src/redist/targets/GetRuntimeInformation.targets | ||
@@ -4,7 +4,7 @@ | ||
|