This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix package testing issue by reverting the inbox version of System.Te…
…xt.Json in netcoreapp3.1
- Loading branch information
Showing
2 changed files
with
14 additions
and
2 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 |
---|---|---|
|
@@ -60,6 +60,14 @@ | |
System.ComponentModel.Composition; | ||
</Value> | ||
</ValidatePackageSuppression> | ||
<!-- Permit inbox revsion of assemblies that are part of shared framework but also ship as packages. This will | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
joperezr
Author
Member
|
||
make sure other packages that have a reference to them will carry a package reference to the latest serviced | ||
version. --> | ||
<ValidatePackageSuppression Include="PermitInbox"> | ||
<Value> | ||
System.Text.Json; | ||
</Value> | ||
</ValidatePackageSuppression> | ||
</ItemGroup> | ||
|
||
<Target Name="VerifyRuntimeOnlyFilesArePresentOnAllRuntimePackages" | ||
|
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
Why was this required? Can you please share the error message you were getting?