MintHTML/MintHTML.csproj

33 lines
1 KiB
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-29 13:23:29 -07:00
<ApplicationIcon>MintHTML.ico</ApplicationIcon>
2024-05-11 16:00:45 -07:00
</PropertyGroup>
2024-05-29 13:23:29 -07:00
<ItemGroup>
<Content Include="MintHTML.ico">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Content>
</ItemGroup>
2024-05-11 23:20:06 -07:00
<ItemGroup>
2024-09-02 15:43:20 -07:00
<PackageReference Include="CefSharp.WinForms.NETCore" Version="127.3.50" />
<PackageReference Include="Markdig" Version="0.37.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="chromiumembeddedframework.runtime.win-arm64" Version="127.3.5" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="chromiumembeddedframework.runtime.win-x64" Version="127.3.5" />
2024-05-11 23:20:06 -07:00
</ItemGroup>
2024-05-11 16:00:45 -07:00
</Project>