MintHTML/MintHTML.csproj

17 lines
533 B
XML
Raw Normal View History

2024-05-11 16:00:45 -07:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
2024-05-14 00:40:35 -07:00
<TargetFramework>net6.0-windows10.0.22000.0</TargetFramework>
2024-05-11 16:00:45 -07:00
<Nullable>enable</Nullable>
2024-05-11 23:20:06 -07:00
<UseWindowsForms>True</UseWindowsForms>
2024-05-11 16:00:45 -07:00
<ImplicitUsings>enable</ImplicitUsings>
2024-05-11 23:20:06 -07:00
<CefSharpAnyCpuSupport>true</CefSharpAnyCpuSupport>
2024-05-14 00:40:35 -07:00
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
2024-05-11 16:00:45 -07:00
</PropertyGroup>
2024-05-11 23:20:06 -07:00
<ItemGroup>
<PackageReference Include="CefSharp.WinForms.NETCore" Version="124.3.50" />
</ItemGroup>
2024-05-11 16:00:45 -07:00
</Project>