MintHTML/MintHTML.csproj

16 lines
462 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-11 16:41:08 -07:00
<TargetFramework>net6.0-windows7.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-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>