-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Cross-target last few projects to DefaultNetCoreTargetFramework #31239
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
Changes from all commits
c5f6dff
65a3711
43e2238
a2fd0c6
59a4cf9
63e3282
0d642d4
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
<PropertyGroup> | ||
<Description>Distributed cache implementation of Microsoft.Extensions.Caching.Distributed.IDistributedCache using Redis.</Description> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<TargetFrameworks>$(DefaultNetCoreTargetFramework);$(DefaultNetFxTargetFramework);netstandard2.0</TargetFrameworks> | ||
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. @JunTaoLuo same question here 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. Same answer too |
||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<PackageTags>cache;distributedcache;redis</PackageTags> | ||
<ExcludeFromSourceBuild>true</ExcludeFromSourceBuild> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
<PropertyGroup> | ||
<Description>Support for storing data protection keys in Redis.</Description> | ||
<TargetFrameworks>$(DefaultNetFxTargetFramework);netstandard2.0</TargetFrameworks> | ||
<TargetFrameworks>$(DefaultNetCoreTargetFramework);$(DefaultNetFxTargetFramework);netstandard2.0</TargetFrameworks> | ||
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. @JunTaoLuo and here |
||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<PackageTags>aspnetcore;dataprotection;redis</PackageTags> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
<PropertyGroup> | ||
<Description>Logger implementation to support Azure App Services 'Diagnostics logs' and 'Log stream' features.</Description> | ||
<TargetFrameworks>$(DefaultNetFxTargetFramework);netstandard2.0</TargetFrameworks> | ||
<TargetFrameworks>$(DefaultNetCoreTargetFramework);$(DefaultNetFxTargetFramework);netstandard2.0</TargetFrameworks> | ||
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. @JunTaoLuo and here |
||
<IsShipping>true</IsShipping> | ||
</PropertyGroup> | ||
|
||
|
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.
@JunTaoLuo looks like this was from extensions - does the cross-targeting here make sense?
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 don't see why not. Other extension packages like Primitives are also cross-targeted.
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.
Do it, do it, do it 😁