2021-10-19 17:36:09 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2020-04-21 17:47:38 +02:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
2021-10-19 17:36:09 +02:00
|
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2021-12-15 17:01:02 +01:00
|
|
|
|
<UseWindowsForms>True</UseWindowsForms>
|
|
|
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
2021-10-19 17:36:09 +02:00
|
|
|
|
<StartupObject>Tidstagning.Program</StartupObject>
|
2021-12-15 17:01:02 +01:00
|
|
|
|
<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 17:47:38 +02:00
|
|
|
|
</PropertyGroup>
|
2021-10-19 17:36:09 +02:00
|
|
|
|
|
2020-04-21 17:47:38 +02:00
|
|
|
|
<ItemGroup>
|
2022-05-01 13:50:42 +02:00
|
|
|
|
<PackageReference Include="CommandLineParser" Version="2.9.0-preview1" />
|
2022-05-01 22:29:00 +02:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0-preview.3.22175.4" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Configuration" Version="7.0.0-preview.3.22175.4" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0-preview.3.22175.4" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="7.0.0-preview.3.22175.4" />
|
2022-05-01 13:50:42 +02:00
|
|
|
|
<PackageReference Include="System.IO.Ports" Version="7.0.0-preview.3.22175.4" />
|
2020-04-21 17:47:38 +02:00
|
|
|
|
</ItemGroup>
|
2021-10-19 17:36:09 +02:00
|
|
|
|
|
2020-04-21 17:47:38 +02:00
|
|
|
|
<ItemGroup>
|
2021-10-19 17:36:09 +02:00
|
|
|
|
<Compile Update="Properties\Settings.Designer.cs">
|
|
|
|
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
2020-04-21 17:47:38 +02:00
|
|
|
|
<AutoGen>True</AutoGen>
|
2021-10-19 17:36:09 +02:00
|
|
|
|
<DependentUpon>Settings.settings</DependentUpon>
|
2020-04-21 17:47:38 +02:00
|
|
|
|
</Compile>
|
2021-10-19 17:36:09 +02:00
|
|
|
|
<Compile Update="Settings.Designer.cs">
|
|
|
|
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
2020-04-21 17:47:38 +02:00
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>Settings.settings</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
2021-10-19 17:36:09 +02:00
|
|
|
|
|
2020-04-21 17:47:38 +02:00
|
|
|
|
<ItemGroup>
|
2021-10-19 17:36:09 +02:00
|
|
|
|
<None Update="Properties\Settings.settings">
|
|
|
|
|
<Generator>SettingsSingleFileGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
|
|
|
|
</None>
|
2020-04-23 20:27:25 +02:00
|
|
|
|
</ItemGroup>
|
2021-10-19 17:36:09 +02:00
|
|
|
|
|
2020-04-21 17:47:38 +02:00
|
|
|
|
</Project>
|