libWiiSharp/libWiiSharp.csproj

27 lines
1,003 B
XML
Raw Permalink Normal View History

2022-03-17 21:10:29 -05:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2022-03-17 21:10:29 -05:00
<TargetFramework>net6.0-windows</TargetFramework>
<LangVersion>latest</LangVersion>
<OutputType>Library</OutputType>
<ApplicationVersion>0.6.0.0</ApplicationVersion>
2022-03-17 21:10:29 -05:00
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<Nullable>annotations</Nullable>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2021-02-06 18:09:13 -06:00
<RegisterForComInterop>true</RegisterForComInterop>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2021-02-06 18:09:13 -06:00
<RegisterForComInterop>false</RegisterForComInterop>
</PropertyGroup>
<ItemGroup>
2022-03-17 21:10:29 -05:00
<Content Include=".gitignore" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Log.cs" />
</ItemGroup>
2021-02-06 18:09:13 -06:00
<ItemGroup>
<PackageReference Include="SkiaSharp" Version="2.80.3" />
2021-02-06 18:09:13 -06:00
</ItemGroup>
</Project>