23 lines
929 B
XML
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> |