mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-21 19:49:34 +08:00
25 lines
650 B
XML
25 lines
650 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Company>Milimoe</Company>
|
|
<BaseOutputPath>..\bin</BaseOutputPath>
|
|
<Authors>Milimoe</Authors>
|
|
<Title>FunGame</Title>
|
|
<PackageOutputPath>..\bin</PackageOutputPath>
|
|
<AssemblyVersion>1.0</AssemblyVersion>
|
|
<FileVersion>1.0</FileVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Implement\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\FunGame.Core.Api\FunGame.Core.Api.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|