|
|
|
|
<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="Microsoft.Data.SqlClient" Version="5.2.2" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="Database.ini">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="PCI-Dask.dll">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="LoginOptions.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<Target Name="MakeLogsFolder" AfterTargets="Publish">
|
|
|
|
|
<MakeDir Directories="C:\LeakTest\Logs" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
</Project>
|