payne
2024-04-25 b57a0b5d5f2712417d5777e01f8615f670d22584
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>disable</Nullable>
    <DocumentationFile>Admin.NET.Application.xml</DocumentationFile>
  </PropertyGroup>
 
  <ItemGroup>
    <Compile Remove="Entity\**" />
    <Compile Remove="Service\System\StepBody\**" />
    <Compile Remove="Service\System\Tenant\**" />
    <Compile Remove="Service\System\Workflow\**" />
    <Compile Remove="StepBody\**" />
    <Compile Remove="System\**" />
    <Compile Remove="Workflow\**" />
    <EmbeddedResource Remove="Entity\**" />
    <EmbeddedResource Remove="Service\System\StepBody\**" />
    <EmbeddedResource Remove="Service\System\Tenant\**" />
    <EmbeddedResource Remove="Service\System\Workflow\**" />
    <EmbeddedResource Remove="StepBody\**" />
    <EmbeddedResource Remove="System\**" />
    <EmbeddedResource Remove="Workflow\**" />
    <None Remove="Entity\**" />
    <None Remove="Service\System\StepBody\**" />
    <None Remove="Service\System\Tenant\**" />
    <None Remove="Service\System\Workflow\**" />
    <None Remove="StepBody\**" />
    <None Remove="System\**" />
    <None Remove="Workflow\**" />
  </ItemGroup>
 
  <ItemGroup>
    <None Remove="applicationsettings.json" />
    <None Remove="HuaRui.Les.Application.xml" />
    <None Remove="Admin.NET.Application.xml" />
  </ItemGroup>
 
  <ItemGroup>
    <Content Include="Admin.NET.Application.xml" />
    <Content Include="applicationsettings.json">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
  </ItemGroup>
 
  <ItemGroup>
    <PackageReference Include="EFCore.BulkExtensions" Version="6.5.6" />
    <PackageReference Include="WorkflowCore" Version="3.6.4" />
    <PackageReference Include="WorkflowCore.DSL" Version="3.6.4" />
  </ItemGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\Admin.NET.Core\Admin.NET.Core.csproj" />
  </ItemGroup>
 
</Project>