You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.7 KiB
51 lines
1.7 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<OutputType>WinExe</OutputType> |
|
<TargetFramework>net6.0</TargetFramework> |
|
<ApplicationIcon>Recent.ico</ApplicationIcon> |
|
<StartupObject /> |
|
<AssemblyName>AksWebBrowser</AssemblyName> |
|
<RootNamespace>AksWebBrowser</RootNamespace> |
|
<Platforms>AnyCPU;x64;x86</Platforms> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
|
<DefineConstants /> |
|
<PlatformTarget>AnyCPU</PlatformTarget> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
|
<DefineConstants /> |
|
<PlatformTarget>AnyCPU</PlatformTarget> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<None Remove="StyleSheet.css" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Content Include="Recent.ico" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<EmbeddedResource Include="StyleSheet.css" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="NAudio" Version="2.2.1" /> |
|
<PackageReference Include="NAudio.Core" Version="2.2.1" /> |
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> |
|
<PackageReference Include="System.IO.Ports" Version="8.0.0" /> |
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0" /> |
|
<PackageReference Include="Xhm.CPF" Version="0.9.6.7" /> |
|
<PackageReference Include="Xhm.CPF.Cef" Version="0.9.6.6" /> |
|
<PackageReference Include="Xhm.CPF.Windows" Version="0.9.6.7" /> |
|
<PackageReference Include="Xhm.CPF.Skia" Version="0.9.6.7" /> |
|
<PackageReference Include="Xhm.CPF.Mac" Version="0.9.6.7" /> |
|
<PackageReference Include="Xhm.CPF.Linux" Version="0.9.6.7" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|