You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.1 KiB
33 lines
1.1 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
|
<Nullable>disable</Nullable>
|
|
<UseWPF>true</UseWPF>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<Deterministic>true</Deterministic>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<Platforms>AnyCPU;x86</Platforms>
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.VisualStudio.Setup.Configuration.Interop" Version="3.14.2075">
|
|
<EmbedInteropTypes>true</EmbedInteropTypes>
|
|
</PackageReference>
|
|
<PackageReference Include="System.IO.Ports" Version="9.0.0" />
|
|
<PackageReference Include="System.Data.SqlClient" Version="4.9.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Database.ini">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="PCI-Dask.dll">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|