2022-03-17 21:10:29 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-12-28 22:28:44 -06:00
|
|
|
|
<PropertyGroup>
|
2022-03-17 21:10:29 -05:00
|
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
2020-12-28 22:28:44 -06:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<ApplicationVersion>0.4.0.0</ApplicationVersion>
|
2022-03-17 21:10:29 -05:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
|
2020-12-28 22:28:44 -06:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
2021-02-06 18:09:13 -06:00
|
|
|
|
<RegisterForComInterop>true</RegisterForComInterop>
|
2020-12-28 22:28:44 -06:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
2021-02-06 18:09:13 -06:00
|
|
|
|
<RegisterForComInterop>false</RegisterForComInterop>
|
2020-12-28 22:28:44 -06:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2022-03-17 21:10:29 -05:00
|
|
|
|
<Content Include=".gitignore" />
|
2020-12-28 22:28:44 -06:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2022-03-17 21:10:29 -05:00
|
|
|
|
<PackageReference Include="Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers" Version="0.3.310801">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.Windows.Compatibility" Version="6.0.0" />
|
2020-12-28 22:28:44 -06:00
|
|
|
|
</ItemGroup>
|
2021-02-06 18:09:13 -06:00
|
|
|
|
<ItemGroup>
|
2022-03-17 21:10:29 -05:00
|
|
|
|
<Compile Remove="Log.cs" />
|
2021-02-06 18:09:13 -06:00
|
|
|
|
</ItemGroup>
|
2020-12-28 22:28:44 -06:00
|
|
|
|
</Project>
|