This repository has been archived by the owner on Oct 6, 2023. It is now read-only.
forked from JamesNK/Newtonsoft.Json
-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature: Properly embed link.xml into package (#72)
- Moved link.xml into Newtonsoft.Json.csproj as embedded resource - Fixed LogicalName - Added preservations for the NullableAttribute and NullableContextAttribute to resolve #54 - Added some more preservations for some converters to resolve #8 and #65 - Updated CHANGELOG.md
- Loading branch information
Showing
6 changed files
with
35 additions
and
38 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<linker> | ||
<assembly fullname="System"> | ||
<!-- No issue on these, though they are quite commonly used. --> | ||
<type fullname="System.ComponentModel.*Converter" preserve="all"/> | ||
</assembly> | ||
<assembly fullname="Newtonsoft.Json"> | ||
<!-- https://github.com/jilleJr/Newtonsoft.Json-for-Unity/issues/54 --> | ||
<type fullname="System.Runtime.CompilerServices.NullableAttribute"/> | ||
<type fullname="System.Runtime.CompilerServices.NullableContextAttribute"/> | ||
|
||
<!-- https://github.com/jilleJr/Newtonsoft.Json-for-Unity/issues/8 --> | ||
<!-- https://github.com/jilleJr/Newtonsoft.Json-for-Unity/issues/65 --> | ||
<type fullname="Newtonsoft.Json.Converters.*Converter" preserve="all" /> | ||
|
||
<!-- No issue on these, though they are quite commonly used. --> | ||
<type fullname="Newtonsoft.Json.Serialization.*NamingStrategy" preserve="all" /> | ||
</assembly> | ||
</linker> |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"Minor": 0, | ||
"Patch": 3, | ||
|
||
"Release": 1, | ||
"Release": 2, | ||
|
||
"AutoDeployLiveRun": false | ||
} |