2024-08-06 16:09:46 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net8.0-windows7.0</TargetFramework>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<BaseOutputPath>D:\Project\C#\DynamicControl\SereinFlow\.Output</BaseOutputPath>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2024-08-06 19:39:28 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Remove="bin\**" />
|
2024-09-06 09:13:13 +08:00
|
|
|
|
<Compile Remove="SerinExpression\**" />
|
2024-08-06 19:39:28 +08:00
|
|
|
|
<EmbeddedResource Remove="bin\**" />
|
2024-09-06 09:13:13 +08:00
|
|
|
|
<EmbeddedResource Remove="SerinExpression\**" />
|
2024-08-06 19:39:28 +08:00
|
|
|
|
<None Remove="bin\**" />
|
2024-09-06 09:13:13 +08:00
|
|
|
|
<None Remove="SerinExpression\**" />
|
2024-08-06 19:39:28 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2024-08-06 16:09:46 +08:00
|
|
|
|
<ItemGroup>
|
2024-09-15 12:15:32 +08:00
|
|
|
|
<Compile Remove="ConnectionType.cs" />
|
2024-09-12 20:32:54 +08:00
|
|
|
|
<Compile Remove="DynamicContext.cs" />
|
2024-09-15 12:15:32 +08:00
|
|
|
|
<Compile Remove="MethodDetails.cs" />
|
2024-09-12 20:32:54 +08:00
|
|
|
|
<Compile Remove="Tool\Attribute.cs" />
|
|
|
|
|
|
<Compile Remove="Tool\DynamicTool.cs" />
|
2024-10-10 10:45:53 +08:00
|
|
|
|
<Compile Remove="Tool\ExpressionHelper.cs" />
|
2024-09-15 12:15:32 +08:00
|
|
|
|
<Compile Remove="Tool\NodeModelBaseFunc.cs" />
|
2024-09-12 20:32:54 +08:00
|
|
|
|
<Compile Remove="Tool\TcsSignal.cs" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2024-09-24 22:39:43 +08:00
|
|
|
|
<PackageReference Include="System.Collections.NonGeneric" Version="4.3.0" />
|
2024-09-12 20:32:54 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\Library.Core\Serein.Library.Core.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Library.Framework\Serein.Library.Framework.csproj" />
|
2024-08-06 16:09:46 +08:00
|
|
|
|
<ProjectReference Include="..\Library\Serein.Library.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|