Uh oh!
There was an error while loading. Please reload this page.
[release/6.0] Add packaging changes for System.Text.Json - #61703
Conversation
ghost
commented
Nov 16, 2021
Tagging subscribers to this area: @dotnet/area-system-text-json Issue DetailsIt seems like we missed packaging changes for JSON on: fd61aef
|
0528e74 to
28b425bCompare@Anipik@ericstj could you please review: 28b425b By setting these properties on Also, instead of setting We could avoid this complexity by just setting But it felt more right to not duplicate arcade logic on our side. For .NET 7+ we could fix the |
After giving it a thought, I decided to go the simple route which is setting |
Uh oh!
There was an error while loading. Please reload this page.
| Condition="$(_AssemblyInTargetingPack) == 'true' and '$(PreReleaseVersionLabel)' == 'servicing'" | ||
| Condition="'$(SkipValidateAssemblyVersion)' != 'true' and '$(_AssemblyInTargetingPack)' == 'true' and '$(PreReleaseVersionLabel)' == 'servicing'" | ||
| AfterTargets="CoreCompile" > | ||
| <Error Condition="'$(AssemblyVersion)' != '$(LastReleasedStableAssemblyVersion)'" Text="AssemblyVersion should match last released assembly version $(LastReleasedStableAssemblyVersion)" /> |
There was a problem hiding this comment.
Is this all the validation we're doing @Anipik? I thought we were going to run a reverse check here:
runtime/src/libraries/shims/ApiCompat.proj
Lines 103 to 108 in c1e9122
To ensure folks don't add API in servicing.
There was a problem hiding this comment.
We have an open issue, we haven't enabled it yet.
Uh oh!
There was an error while loading. Please reload this page.
ericstj
commented
Nov 17, 2021
Don't treat my comment as blocking. Merge when ready. |
safern
commented
Nov 17, 2021
Failure is: #50748 |
It seems like we missed packaging changes for JSON on: fd61aef
Also fixes: #61694