14 lines
514 B
XML
14 lines
514 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<LangVersion>10.0</LangVersion>
|
|
<Nullable>disable</Nullable>
|
|
<OutputType>WinExe</OutputType>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Json2CSharpCodeGenerator.Lib\Json2CSharpCodeGenerator.Lib.csproj" />
|
|
</ItemGroup>
|
|
</Project> |