mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-02 15:50:47 +08:00
32 lines
1.0 KiB
XML
32 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Version>1.0.0</Version>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFrameworks>net8.0</TargetFrameworks>
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<AssemblyName>starter</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0|AnyCPU'">
|
|
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0|AnyCPU'">
|
|
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Library\Serein.Library.csproj" />
|
|
<ProjectReference Include="..\NodeFlow\Serein.NodeFlow.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|