FunGame-Desktop/FunGame.Implement/FunGame.Implement.csproj
milimoe e09da145b9
.NET 9;窗体优化 (#30)
* 升级 .NET 9;异步事件优化

* 加入密码房间需要先检查密码

* 添加模组方法参数
2025-01-15 09:13:27 +08:00

33 lines
1.0 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Company>Milimoe</Company>
<BaseOutputPath>..\bin\</BaseOutputPath>
<Authors>Milimoe</Authors>
<Title>Implement</Title>
<PackageOutputPath>..\bin</PackageOutputPath>
<AssemblyVersion>1.0</AssemblyVersion>
<FileVersion>1.0</FileVersion>
<RootNamespace>Milimoe.FunGame.Core.Implement</RootNamespace>
<AssemblyName>$(MSBuildProjectName)</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<Reference Include="FunGame.Core">
<HintPath>..\..\FunGame.Core\bin\Debug\net9.0\FunGame.Core.dll</HintPath>
</Reference>
</ItemGroup>
</Project>