2026-02-26 17:07:19 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
2026-04-01 19:25:51 +08:00
|
|
|
|
<TargetFramework>net10.0-windows7.0</TargetFramework>
|
2026-02-26 17:07:19 +08:00
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2026-02-27 16:03:49 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
|
2026-03-02 18:50:30 +08:00
|
|
|
|
<PackageReference Include="EPPlus" Version="7.0.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.3" />
|
2026-02-27 16:58:02 +08:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.3" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.3" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.3" />
|
2026-03-24 19:33:35 +08:00
|
|
|
|
<PackageReference Include="Microsoft.VisualBasic" Version="10.3.0" />
|
2026-04-12 16:46:55 +08:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
|
2026-02-27 16:58:02 +08:00
|
|
|
|
<PackageReference Include="NModbus4.NetCore" Version="4.0.0" />
|
2026-03-24 19:33:35 +08:00
|
|
|
|
<PackageReference Include="OxyPlot.Wpf" Version="2.2.0" />
|
2026-03-19 20:40:54 +08:00
|
|
|
|
<PackageReference Include="SunnyUI" Version="3.9.3" />
|
2026-02-27 16:58:02 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="appsettings.json">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2026-02-27 16:03:49 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2026-02-26 17:07:19 +08:00
|
|
|
|
</Project>
|