-
-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* #515 make STJ only included for net standard * Moved to global package refs & add suppressions * Make System.ComponentModel.Annotations oonly for net std * Styling fixes. --------- Co-authored-by: Steve Smith <[email protected]>
- Loading branch information
1 parent
7396d73
commit c3f8e56
Showing
22 changed files
with
137 additions
and
117 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 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
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,5 @@ | ||
namespace Ardalis.SmartEnum.Dapper | ||
{ | ||
//using global::Dapper; | ||
using System; | ||
|
||
/// <summary> | ||
|
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
50 changes: 24 additions & 26 deletions
50
src/SmartEnum.SystemTextJson/SmartEnum.SystemTextJson.csproj
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,28 +1,26 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<PackageId>Ardalis.SmartEnum.SystemTextJson</PackageId> | ||
<Title>Ardalis.SmartEnum.SystemTextJson</Title> | ||
<Description>System.Text.Json (de)serialization support for Ardalis.SmartEnum.</Description> | ||
<Summary>System.Text.Json (de)serialization support for Ardalis.SmartEnum.</Summary> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageTags>enum;smartenum;netstandard2.0;json;system.text.json;converter</PackageTags> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<PackageReleaseNotes>Updating to net7.</PackageReleaseNotes> | ||
<AssemblyName>Ardalis.SmartEnum.SystemTextJson</AssemblyName> | ||
<RootNamespace>Ardalis.SmartEnum.SystemTextJson</RootNamespace> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="System.Text.Json" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" /> | ||
<PackageReference Include="SonarAnalyzer.CSharp" PrivateAssets="All" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="$(SolutionDir)img\icon.png" Pack="true" Visible="false" PackagePath="" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\SmartEnum\SmartEnum.csproj" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<PackageId>Ardalis.SmartEnum.SystemTextJson</PackageId> | ||
<Title>Ardalis.SmartEnum.SystemTextJson</Title> | ||
<Description>System.Text.Json (de)serialization support for Ardalis.SmartEnum.</Description> | ||
<Summary>System.Text.Json (de)serialization support for Ardalis.SmartEnum.</Summary> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageTags>enum;smartenum;netstandard2.0;json;system.text.json;converter</PackageTags> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<PackageReleaseNotes>Updating to net7.</PackageReleaseNotes> | ||
<AssemblyName>Ardalis.SmartEnum.SystemTextJson</AssemblyName> | ||
<RootNamespace>Ardalis.SmartEnum.SystemTextJson</RootNamespace> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> | ||
</PropertyGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'netStandard2.1'"> | ||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="$(SolutionDir)img\icon.png" Pack="true" Visible="false" PackagePath="" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\SmartEnum\SmartEnum.csproj" /> | ||
</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
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
Oops, something went wrong.