tidstagning/Tidstagning.csproj

40 lines
1.3 KiB
XML
Raw Permalink Normal View History

2022-06-17 19:09:10 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
2022-11-03 19:35:45 +00:00
<ImplicitUsings>false</ImplicitUsings>
<StartupObject>Tidstagning.Program</StartupObject>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Configurations>Release</Configurations>
2022-11-03 20:58:32 +00:00
<AnalysisLevel>latest-all</AnalysisLevel>
2022-11-03 19:35:45 +00:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
2022-11-03 20:58:32 +00:00
<Optimize>False</Optimize>
2022-11-03 19:35:45 +00:00
<PlatformTarget>x64</PlatformTarget>
2022-06-17 19:09:10 +00:00
</PropertyGroup>
<ItemGroup>
2022-06-17 21:23:01 +00:00
<PackageReference Include="CommandLineParser" Version="2.9.1" />
2022-06-17 19:09:10 +00:00
<PackageReference Include="System.IO.Ports" Version="6.0.0" />
</ItemGroup>
2022-11-03 19:35:45 +00:00
<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>
2022-06-17 19:09:10 +00:00
</Project>