mirror of
https://github.com/project-redbud/FunGame-Server.git
synced 2025-04-22 03:59:36 +08:00
65 lines
2.0 KiB
XML
65 lines
2.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<ApplicationIcon>logo.ico</ApplicationIcon>
|
|
<PackageIcon>logo.ico</PackageIcon>
|
|
<BaseOutputPath>..\bin</BaseOutputPath>
|
|
<Title>FunGameServer</Title>
|
|
<Company>Milimoe</Company>
|
|
<Authors>Milimoe</Authors>
|
|
<PackageOutputPath>C:\milimoe\FunGame\bin</PackageOutputPath>
|
|
<AssemblyVersion>1.0</AssemblyVersion>
|
|
<FileVersion>1.0</FileVersion>
|
|
<AssemblyName>FunGameServer</AssemblyName>
|
|
<RootNamespace>Milimoe.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DebugType>embedded</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DebugType>embedded</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="logo.ico" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\FunGame.Implement\FunGame.Implement.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="FunGame.Core">
|
|
<HintPath>..\..\FunGame.Core\bin\Debug\net7.0\FunGame.Core.dll</HintPath>
|
|
<Private>True</Private>
|
|
</Reference>
|
|
<Reference Include="MySql.Data">
|
|
<HintPath>..\bin\Debug\net7.0\MySql.Data.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="System.Configuration.ConfigurationManager">
|
|
<HintPath>..\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="System.Security.Permissions">
|
|
<HintPath>..\bin\Debug\net7.0\System.Security.Permissions.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Images\logo.ico">
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|