mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 03:59:35 +08:00
30 lines
933 B
XML
30 lines
933 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<BaseOutputPath>..\bin\</BaseOutputPath>
|
|
<Authors>Milimoe</Authors>
|
|
<Company>Milimoe</Company>
|
|
<Title>FunGameSDK</Title>
|
|
<AssemblyVersion>1.0</AssemblyVersion>
|
|
<FileVersion>1.0</FileVersion>
|
|
<PackageOutputPath>..\bin\plugin</PackageOutputPath>
|
|
<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>
|
|
<ProjectReference Include="..\FunGame.Core\FunGame.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|