| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net6.0-windows</TargetFramework>
- <Nullable>enable</Nullable>
- <UseWindowsForms>true</UseWindowsForms>
- <ImplicitUsings>enable</ImplicitUsings>
- <SignAssembly>False</SignAssembly>
- <ApplicationIcon>0d28e7dc-5024-45b7-81f8-bb1c48fe484d.ico</ApplicationIcon>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
- <NoWarn>1701;1702</NoWarn>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
- <NoWarn>1701;1702</NoWarn>
- </PropertyGroup>
- <ItemGroup>
- <Content Include="0d28e7dc-5024-45b7-81f8-bb1c48fe484d.ico" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="System.Data.SqlClient" Version="4.8.3" />
- <PackageReference Include="System.IO.Ports" Version="6.0.0" />
- </ItemGroup>
- <ItemGroup>
- <Compile Update="Properties\Settings.Designer.cs">
- <DesignTimeSharedInput>True</DesignTimeSharedInput>
- <AutoGen>True</AutoGen>
- <DependentUpon>Settings.settings</DependentUpon>
- </Compile>
- </ItemGroup>
- <ItemGroup>
- <None Update="Properties\Settings.settings">
- <Generator>SettingsSingleFileGenerator</Generator>
- <LastGenOutput>Settings.Designer.cs</LastGenOutput>
- </None>
- </ItemGroup>
- </Project>
|