25 lines
732 B
XML
25 lines
732 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<OutputType>WinExe</OutputType>
|
||
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
||
|
|
<RootNamespace>StandardScene.MagCarSimulator</RootNamespace>
|
||
|
|
<AssemblyName>StandardScene.MagCarSimulator</AssemblyName>
|
||
|
|
<LangVersion>latest</LangVersion>
|
||
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
||
|
|
<Nullable>disable</Nullable>
|
||
|
|
<Deterministic>true</Deterministic>
|
||
|
|
<UseWindowsForms>true</UseWindowsForms>
|
||
|
|
<ApplicationIcon />
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<None Update="appsettings.json" CopyToOutputDirectory="PreserveNewest" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|