-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to 0.2.0 for vulnerability fixes; move to .NET Standard 2.0 an…
…d latest Newtonsoft.Json.
- Loading branch information
Showing
5 changed files
with
45 additions
and
37 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 |
---|---|---|
@@ -1,25 +1,25 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard1.4</TargetFramework> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>arkane.snk</AssemblyOriginatorKeyFile> | ||
<Version>0.1.0</Version> | ||
<Version>0.2.0</Version> | ||
<Authors>Alistair J. R. Young</Authors> | ||
<Company>Arkane Systems</Company> | ||
<Description>Newtonsoft.JSON converter making it possible to round-trip type-safe ExpandoObjects.</Description> | ||
<PackageLicenseUrl>https://github.com/arkane-systems/json-expandoobject/blob/master/LICENSE</PackageLicenseUrl> | ||
<PackageProjectUrl>https://github.com/arkane-systems/json-expandoobject/</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/arkane-systems/json-expandoobject/</RepositoryUrl> | ||
<RepositoryType>GitHub</RepositoryType> | ||
<PackageTags>json json.net dynamic</PackageTags> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<RootNamespace>ArkaneSystems.Json.Expandos</RootNamespace> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="JetBrains.Annotations" Version="11.0.0" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" /> | ||
<PackageReference Include="JetBrains.Annotations" Version="2022.3.1" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> | ||
</ItemGroup> | ||
|
||
</Project> |
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="MSTest.TestAdapter" version="1.1.18" targetFramework="net461" /> | ||
<package id="MSTest.TestFramework" version="1.1.18" targetFramework="net461" /> | ||
<package id="Newtonsoft.Json" version="10.0.3" targetFramework="net461" /> | ||
<package id="MSTest.TestAdapter" version="3.0.2" targetFramework="net48" /> | ||
<package id="MSTest.TestFramework" version="3.0.2" targetFramework="net48" /> | ||
<package id="Newtonsoft.Json" version="13.0.3" targetFramework="net48" /> | ||
</packages> |