mirror of
https://github.com/project-redbud/FunGame-Server.git
synced 2025-04-22 03:59:36 +08:00
36 lines
1.0 KiB
XML
36 lines
1.0 KiB
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>
|
|
<PackageReference Include="MySql.Data" Version="8.0.30" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="FunGame.Core.Api">
|
|
<HintPath>..\..\FunGame\bin\Debug\net6.0\FunGame.Core.Api.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|