16 lines
535 B
XML
16 lines
535 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|||
|
|
<OutputType>WinExe</OutputType>
|
|||
|
|
<LangVersion>13.0</LangVersion>
|
|||
|
|
<UseWPF>true</UseWPF>
|
|||
|
|
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
|
|||
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\NeoUI\Melskin\Melskin.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
</Project>
|