2025-07-27 23:34:01 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2025-07-30 21:15:07 +08:00
|
|
|
|
<TargetFrameworks>net8.0;</TargetFrameworks>
|
2025-07-27 23:34:01 +08:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
2025-07-28 12:16:29 +08:00
|
|
|
|
<BaseOutputPath>..\.\.Output</BaseOutputPath>
|
|
|
|
|
|
|
|
|
|
|
|
<Title>为 SereinFlow 提供的 JSON 扩展</Title>
|
|
|
|
|
|
<Version>1.0.0</Version>
|
|
|
|
|
|
<Description>通过 NewtonsoftJson 实现JSON门户扩展,用于解决 Serein.Proto.* 项目下需要 JSON 序列化与反序列化的场景</Description>
|
|
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
|
|
|
|
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
|
|
|
|
|
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
|
|
|
|
|
|
2025-07-27 23:34:01 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2025-07-30 21:15:07 +08:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0|AnyCPU'">
|
|
|
|
|
|
<NoWarn>1701;1702;CS8766</NoWarn>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net462|AnyCPU'">
|
|
|
|
|
|
<NoWarn>1701;1702;CS8766</NoWarn>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0|AnyCPU'">
|
|
|
|
|
|
<NoWarn>1701;1702;CS8766</NoWarn>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net462|AnyCPU'">
|
|
|
|
|
|
<NoWarn>1701;1702;CS8766</NoWarn>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2025-07-27 23:34:01 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\Library\Serein.Library.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|