57 lines
2.5 KiB
XML
57 lines
2.5 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\SSPCTester.Logic\SSPCTester.Logic.csproj" />
|
|||
|
|
<ProjectReference Include="..\SSPCTester.Devices\SSPCTester.Devices.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.2" />
|
|||
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.9" />
|
|||
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.9" />
|
|||
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.9" />
|
|||
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="10.0.9" />
|
|||
|
|
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.3124.44" />
|
|||
|
|
<PackageReference Include="QuestPDF" Version="2026.6.0" />
|
|||
|
|
<PackageReference Include="ScottPlot.WPF" Version="5.1.58" />
|
|||
|
|
<PackageReference Include="Serilog.Extensions.Hosting" Version="10.0.0" />
|
|||
|
|
<PackageReference Include="Serilog.Settings.Configuration" Version="10.0.0" />
|
|||
|
|
<PackageReference Include="Serilog.Sinks.Debug" Version="3.0.0" />
|
|||
|
|
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<OutputType>WinExe</OutputType>
|
|||
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|||
|
|
<PlatformTarget>x64</PlatformTarget>
|
|||
|
|
<Platforms>x64</Platforms>
|
|||
|
|
<Nullable>enable</Nullable>
|
|||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
|
<UseWPF>true</UseWPF>
|
|||
|
|
<RootNamespace>SSPCTester.UI</RootNamespace>
|
|||
|
|
<RestoreUseStaticGraphEvaluation>true</RestoreUseStaticGraphEvaluation>
|
|||
|
|
<DefaultItemExcludes>$(DefaultItemExcludes);bin-codex\**;obj-codex\**</DefaultItemExcludes>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<None Update="appsettings.json">
|
|||
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
|
</None>
|
|||
|
|
<None Include="..\Docs\Modbus接口规范\device-profile.json"
|
|||
|
|
Link="Config\device-profile.json">
|
|||
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|||
|
|
</None>
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<None Include="..\Docs\PCIe8586驱动接入资料\native\ACTS1000_64.dll"
|
|||
|
|
Link="ACTS1000_64.dll"
|
|||
|
|
Condition="Exists('..\Docs\PCIe8586驱动接入资料\native\ACTS1000_64.dll')">
|
|||
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|||
|
|
</None>
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|