mirror of
https://github.com/milimoe/FunGame-Testing.git
synced 2025-04-22 04:09:34 +08:00
39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<BaseOutputPath>..\bin\</BaseOutputPath>
|
|
<RootNamespace>Milimoe.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<NoWarn>1701;1702;IDE0130</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<NoWarn>1701;1702;IDE0130</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Items\**" />
|
|
<EmbeddedResource Remove="Items\**" />
|
|
<None Remove="Items\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\FunGame.Core\FunGame.Core.csproj" />
|
|
<ProjectReference Include="..\..\OshimaGameModule\OshimaCore\OshimaCore.csproj" />
|
|
<ProjectReference Include="..\..\OshimaGameModule\OshimaModules\OshimaModules.csproj" />
|
|
<ProjectReference Include="..\..\OshimaGameModule\OshimaServers\OshimaServers.csproj" />
|
|
<ProjectReference Include="..\..\OshimaGameModule\OshimaWebAPI\OshimaWebAPI.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|