FunGame-Server/FunGameServer.Core/FunGameServer.Core.csproj
2022-09-01 23:09:10 +08:00

30 lines
878 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<BaseOutputPath>C:\milimoe\FunGame\bin</BaseOutputPath>
<Title>FunGameServer</Title>
<Authors>Milimoe</Authors>
<Product>$(AssemblyName)</Product>
<Company>Milimoe</Company>
<PackageOutputPath>C:\milimoe\FunGame\bin</PackageOutputPath>
<AssemblyVersion>1.0</AssemblyVersion>
<FileVersion>1.0</FileVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<Folder Include="Implement\" />
</ItemGroup>
</Project>