mirror of
https://github.com/HolographicHat/Yae.git
synced 2026-03-19 02:49:47 +08:00
21 lines
701 B
XML
21 lines
701 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<ApplicationManifest>res\app.manifest</ApplicationManifest>
|
|
<AssemblyVersion>2.0.0</AssemblyVersion>
|
|
<FileVersion>2.0.0</FileVersion>
|
|
<ApplicationIcon>icon.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Google.Protobuf" Version="3.21.2" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.2-beta1" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|