tidstagning/Tidstagning/Tidstagning.csproj

49 lines
1.5 KiB
XML
Raw Normal View History

2021-10-19 15:36:09 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2020-04-21 15:47:38 +00:00
<PropertyGroup>
<OutputType>WinExe</OutputType>
2021-10-19 15:36:09 +00:00
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>True</UseWindowsForms>
<ImplicitUsings>disable</ImplicitUsings>
2021-10-19 15:36:09 +00:00
<StartupObject>Tidstagning.Program</StartupObject>
<DebugType>portable</DebugType>
<SignAssembly>False</SignAssembly>
<ErrorReport>none</ErrorReport>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn />
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn />
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
2020-04-21 15:47:38 +00:00
</PropertyGroup>
2021-10-19 15:36:09 +00:00
2020-04-21 15:47:38 +00:00
<ItemGroup>
2021-10-19 15:36:09 +00:00
<PackageReference Include="System.IO.Ports" Version="5.0.1" />
2020-04-21 15:47:38 +00:00
</ItemGroup>
2021-10-19 15:36:09 +00:00
2020-04-21 15:47:38 +00:00
<ItemGroup>
2021-10-19 15:36:09 +00:00
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
2020-04-21 15:47:38 +00:00
<AutoGen>True</AutoGen>
2021-10-19 15:36:09 +00:00
<DependentUpon>Settings.settings</DependentUpon>
2020-04-21 15:47:38 +00:00
</Compile>
2021-10-19 15:36:09 +00:00
<Compile Update="Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
2020-04-21 15:47:38 +00:00
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
2021-10-19 15:36:09 +00:00
2020-04-21 15:47:38 +00:00
<ItemGroup>
2021-10-19 15:36:09 +00:00
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
2021-10-19 15:36:09 +00:00
2020-04-21 15:47:38 +00:00
</Project>