FunGame-Core/FunGame.Console/FunGame.Console.csproj
2022-11-20 01:23:12 +08:00

31 lines
917 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Company>Milimoe</Company>
<Authors>Milimoe</Authors>
<Product>FunGame</Product>
<Title>FunGame.Console</Title>
<ApplicationIcon>logo.ico</ApplicationIcon>
<BaseOutputPath>..\bin\</BaseOutputPath>
<AssemblyName>FunGame</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>
</Project>