2024-08-05 10:11:58 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-08-06 16:09:46 +08:00
|
|
|
|
<TargetFramework>net8.0-windows7.0</TargetFramework>
|
2024-08-05 10:11:58 +08:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<BaseOutputPath>D:\Project\C#\DynamicControl\SereinFlow\.Output</BaseOutputPath>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2024-08-05 19:43:57 +08:00
|
|
|
|
<ItemGroup>
|
2024-08-06 16:09:46 +08:00
|
|
|
|
<Compile Remove="Flow\**" />
|
2024-08-05 19:43:57 +08:00
|
|
|
|
<Compile Remove="obj\**" />
|
2024-08-06 16:09:46 +08:00
|
|
|
|
<EmbeddedResource Remove="Flow\**" />
|
2024-08-05 19:43:57 +08:00
|
|
|
|
<EmbeddedResource Remove="obj\**" />
|
2024-08-06 16:09:46 +08:00
|
|
|
|
<None Remove="Flow\**" />
|
2024-08-05 19:43:57 +08:00
|
|
|
|
<None Remove="obj\**" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2024-08-06 15:41:14 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Remove="ServiceContainer.cs" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2024-08-05 10:11:58 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="SqlSugarCore" Version="5.1.4.166" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|