FunGame-Core/FunGame.Core.csproj
milimoe 23c9ade79e
拥抱System.Text.Json (#27)
* 添加适用于DataSet和DateTime的JSON自定义转换器。

* 添加JsonManager,删除JsonObject并仅使用SocketObject

* 移除Newtonsoft.Json引用
2023-06-03 18:57:24 +08:00

28 lines
916 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<BaseOutputPath>bin\</BaseOutputPath>
<Company>Milimoe</Company>
<Authors>Milimoe</Authors>
<AssemblyVersion>1.0</AssemblyVersion>
<FileVersion>1.0</FileVersion>
<PackageOutputPath>..\bin</PackageOutputPath>
<Title>Core</Title>
<RootNamespace>Milimoe.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyName>$(MSBuildProjectName)</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
</Project>