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.

37 lines
1.3 KiB

2 months ago
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<RootNamespace>Housing</RootNamespace>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
2 months ago
<ApplicationIcon>Resources\Housing_voltage_current_icon.ico</ApplicationIcon>
2 months ago
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.1.3" />
<PackageReference Include="System.IO.Ports" Version="9.0.10" />
</ItemGroup>
2 months ago
<ItemGroup>
<None Remove="Resources\mobidigm-logo.png" />
<Resource Include="Resources\mobidigm-logo.png" />
</ItemGroup>
2 months ago
<ItemGroup>
<None Update="Database.ini">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Hardware.ini">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="InspectionSettings.ini">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="LoginOptions.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
2 months ago
<None Update="init.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
2 months ago
</ItemGroup>
</Project>