22 lines
831 B
XML
22 lines
831 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<IsPackable>false</IsPackable>
|
|
<LangVersion>10.0</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<OutputType>Exe</OutputType>
|
|
<PublishReadyToRun>true</PublishReadyToRun>
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<SelfContained>true</SelfContained>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Infineon.Mesa.Library.Json2CSharpCodeGenerator" Version="2.1.0.1" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="..\Json2CSharpCodeGenerator.Tests\Test_10_SETTINGS_IMMUTABLE_CLASSES_PHARES_INPUT.txt">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project> |