30 lines
1.0 KiB
XML
30 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>disable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
<Product>Shōko</Product>
|
|
<Version>0.0.1</Version>
|
|
<Description>an experimental browser</Description>
|
|
<Company>a39 studios</Company>
|
|
<Copyright>© 2023</Copyright>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources/RobotoFlex.ttf" LogicalName="RobotoFlex.ttf" />
|
|
<EmbeddedResource Include="Resources/RobotoMono.ttf" LogicalName="RobotoMono.ttf" />
|
|
|
|
<PackageReference Include="Raylib-cs" Version="4.5.0.4" />
|
|
<PackageReference Include="rlImgui-cs" Version="1.0.3" />
|
|
<PackageReference Include="ImGui.NET" Version="1.89.9.2" />
|
|
<PackageReference Include="Magick.NET-Q8-AnyCPU" Version="13.3.0" />
|
|
<PackageReference Include="FluentFTP" Version="48.0.0" />
|
|
<PackageReference Include="Mime" Version="3.5.2" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|