mirror of
https://github.com/TheShadowEevee/libWiiSharp.git
synced 2025-01-11 15:38:51 -06:00
29 lines
No EOL
1.1 KiB
XML
29 lines
No EOL
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
<OutputType>Library</OutputType>
|
|
<ApplicationVersion>0.4.0.0</ApplicationVersion>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<RegisterForComInterop>true</RegisterForComInterop>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<RegisterForComInterop>false</RegisterForComInterop>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Content Include=".gitignore" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<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" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Remove="Log.cs" />
|
|
</ItemGroup>
|
|
</Project> |