mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-02 15:50:47 +08:00
44 lines
1.6 KiB
XML
44 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
||
<PropertyGroup>
|
||
<TargetFrameworks>net8.0;</TargetFrameworks>
|
||
<ImplicitUsings>enable</ImplicitUsings>
|
||
<LangVersion>latest</LangVersion>
|
||
<Nullable>enable</Nullable>
|
||
<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>
|
||
|
||
</PropertyGroup>
|
||
|
||
<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>
|
||
|
||
<ItemGroup>
|
||
<ProjectReference Include="..\Library\Serein.Library.csproj" />
|
||
</ItemGroup>
|
||
|
||
<ItemGroup>
|
||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
||
</ItemGroup>
|
||
|
||
</Project>
|