2025-10-04 08:52:23 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
|
<LangVersion>13.0</LangVersion>
|
|
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
|
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
|
2026-01-01 10:02:59 +08:00
|
|
|
|
<Platforms>AnyCPU;x64</Platforms>
|
2025-10-04 08:52:23 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\NeoUI\NeoUI\NeoUI.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|