mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
27 lines
729 B
XML
27 lines
729 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<BaseOutputPath>..\.\.Output</BaseOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="bin\**" />
|
|
<Compile Remove="TestExpression\**" />
|
|
<Compile Remove="Tool\**" />
|
|
<EmbeddedResource Remove="bin\**" />
|
|
<EmbeddedResource Remove="TestExpression\**" />
|
|
<EmbeddedResource Remove="Tool\**" />
|
|
<None Remove="bin\**" />
|
|
<None Remove="TestExpression\**" />
|
|
<None Remove="Tool\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Library\Serein.Library.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|