crusherScanner.csproj 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net6.0-windows</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <UseWindowsForms>true</UseWindowsForms>
  7. <ImplicitUsings>enable</ImplicitUsings>
  8. <SignAssembly>False</SignAssembly>
  9. <ApplicationIcon>0d28e7dc-5024-45b7-81f8-bb1c48fe484d.ico</ApplicationIcon>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  12. <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
  13. <NoWarn>1701;1702</NoWarn>
  14. </PropertyGroup>
  15. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  16. <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
  17. <NoWarn>1701;1702</NoWarn>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <Content Include="0d28e7dc-5024-45b7-81f8-bb1c48fe484d.ico" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <PackageReference Include="System.Data.SqlClient" Version="4.8.3" />
  24. <PackageReference Include="System.IO.Ports" Version="6.0.0" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <Compile Update="Properties\Settings.Designer.cs">
  28. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  29. <AutoGen>True</AutoGen>
  30. <DependentUpon>Settings.settings</DependentUpon>
  31. </Compile>
  32. </ItemGroup>
  33. <ItemGroup>
  34. <None Update="Properties\Settings.settings">
  35. <Generator>SettingsSingleFileGenerator</Generator>
  36. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  37. </None>
  38. </ItemGroup>
  39. </Project>