json-2-c-sharp-code-generator/Json2CSharpCodeGenerator.Lib/Json2CSharpCodeGenerator.Lib.csproj
Mike Phares 8b36f3d30a Change to IncludeSymbols
and Added Json2CSharpCodeGenerator.Console
2022-08-13 16:20:35 -07:00

23 lines
929 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>10.0</LangVersion>
<Nullable>disable</Nullable>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<TargetFramework>netstandard2.1</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>2.1.0.1</Version>
<Company>Infineon Technologies Americas Corp.</Company>
<Authors>Mike Phares</Authors>
<PackageId>Infineon.Mesa.Library.Json2CSharpCodeGenerator</PackageId>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CG.Pluralization" Version="0.3000.12" />
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
</Project>