2024-10-12 22:25:33 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-10-15 21:56:09 +08:00
|
|
|
|
<Version>1.0.0</Version>
|
2024-10-12 22:25:33 +08:00
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
|
<TargetFrameworks>net8.0</TargetFrameworks>
|
|
|
|
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
2024-10-13 19:36:45 +08:00
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
2024-10-20 21:59:42 +08:00
|
|
|
|
<AssemblyName>starter</AssemblyName>
|
2024-10-27 00:54:10 +08:00
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
2024-10-22 00:13:13 +08:00
|
|
|
|
<!--<IsRoslynComponent>true</IsRoslynComponent>-->
|
|
|
|
|
|
<!--<GenerateDocumentationFile>true</GenerateDocumentationFile>-->
|
|
|
|
|
|
|
2024-10-13 19:36:45 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0|AnyCPU'">
|
2024-10-27 00:54:10 +08:00
|
|
|
|
<Optimize>False</Optimize>
|
|
|
|
|
|
<GenerateAssemblyInfo>True</GenerateAssemblyInfo>
|
2024-10-13 19:36:45 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0|AnyCPU'">
|
2024-10-27 00:54:10 +08:00
|
|
|
|
<Optimize>False</Optimize>
|
|
|
|
|
|
<GenerateAssemblyInfo>True</GenerateAssemblyInfo>
|
2024-10-12 22:25:33 +08:00
|
|
|
|
</PropertyGroup>
|
2024-10-22 00:13:13 +08:00
|
|
|
|
|
2024-10-12 22:25:33 +08:00
|
|
|
|
<ItemGroup>
|
2024-10-27 00:54:10 +08:00
|
|
|
|
<ProjectReference Include="..\Library.Core\Serein.Library.Core.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Library\Serein.Library.csproj" />
|
2024-10-12 22:25:33 +08:00
|
|
|
|
<ProjectReference Include="..\NodeFlow\Serein.NodeFlow.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2024-10-27 00:54:10 +08:00
|
|
|
|
<!--<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>-->
|
|
|
|
|
|
|
2024-10-12 22:25:33 +08:00
|
|
|
|
</Project>
|