-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drop support for .NET 6/7 (Lombiq Technologies: OCORE-128) #14695
Changes from 10 commits
e522e06
fc0c94a
a684923
00fbcdf
239ac9a
8d139f1
7b856a3
34fb105
2a360e3
819ed65
532543c
ada5b1d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
|
||
<!-- TFMs used to build the abstractions and modules, by convention the default TFM is at the first position --> | ||
<!-- In a cross-targeting build, some assets are only copied on the first TFM, by convention the default TFM --> | ||
<CommonTargetFrameworks Condition="'$(CommonTargetFrameworks)' == ''">net8.0;net7.0;net6.0</CommonTargetFrameworks> | ||
<CommonTargetFrameworks Condition="'$(CommonTargetFrameworks)' == ''">net8.0</CommonTargetFrameworks> | ||
</PropertyGroup> | ||
|
||
<!-- Detect if the solution is opened in VS to limit the TFMs that are analyzed by Roslyn for performance reasons --> | ||
|
@@ -24,16 +24,6 @@ | |
<MicrosoftExtensionsPackagesVersion>8.0.0</MicrosoftExtensionsPackagesVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="$(TargetFramework) == 'net7.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. WE need to keep it commented as an example, otherwise we'll forget how to do that when net9.0 ships. We had this problem last time and the templates got broken. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Re-added it with a comment. |
||
<AspNetCorePackagesVersion>7.0.14</AspNetCorePackagesVersion> | ||
<MicrosoftExtensionsPackagesVersion>7.0.14</MicrosoftExtensionsPackagesVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="$(TargetFramework) == 'net6.0'"> | ||
<AspNetCorePackagesVersion>6.0.25</AspNetCorePackagesVersion> | ||
<MicrosoftExtensionsPackagesVersion>6.0.25</MicrosoftExtensionsPackagesVersion> | ||
</PropertyGroup> | ||
|
||
<!-- 'Microsoft.AspNetCore' packages that are not included in the ASP.NET Core shared framework --> | ||
<ItemGroup> | ||
<PackageManagement Include="Microsoft.AspNetCore.Authentication.Facebook" Version="$(AspNetCorePackagesVersion)" /> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am wondering if not setting
-f
would have just built all tfms.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes but when multiple tfms are built concurrently there are some issues when it outputs files.