schangxiang@126.com
2025-05-10 4209c8ff313ce8bac44bc9fe0b2260111a3fb388
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<Project Sdk="Microsoft.NET.Sdk">
 
    <Import Project="../../common.props" />
    <Import Project="../../configureawait.props" />
 
    <PropertyGroup>
        <TargetFramework>net6.0</TargetFramework>
        <EnableDynamicLoading>true</EnableDynamicLoading>
        <ProduceReferenceAssembly>false</ProduceReferenceAssembly>
        <GenerateDocumentationFile>true</GenerateDocumentationFile>
    </PropertyGroup>
 
    <PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Windows'))">
        <CMSRootPath>D:\Program Files\CMS Editor</CMSRootPath>
        <OutputPath>$(CMSRootPath)\plugins\cms.plugin.pipelinelems</OutputPath>
    </PropertyGroup>
 
    <PropertyGroup Condition="$([MSBuild]::IsOSPlatform('OSX'))">
        <CMSRootPath>/Volumes/SSD/CMS Editor</CMSRootPath>
        <OutputPath>$(CMSRootPath)\plugins\cms.plugin.pipelinelems</OutputPath>
    </PropertyGroup>
 
    <ItemGroup>
      <None Remove="appsettings.json" />
      <None Remove="Flows\50001_1.pfd" />
      <None Remove="Flows\FlowInfo.xml" />
      <None Remove="Resources\Templates\MyTestEntityName导出模板.xlsx" />
    </ItemGroup>
 
    <ItemGroup>
      <Content Include="appsettings.json">
        <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
      </Content>
    </ItemGroup>
 
    <ItemGroup>
      <EmbeddedResource Include="Resources\Templates\MyTestEntityName导出模板.xlsx">
        <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
      </EmbeddedResource>
    </ItemGroup>
 
    <ItemGroup>
        <PackageReference Include="CMS.Framework.AspNetCore" Version="2.28.3" />
        <PackageReference Include="CMS.Extensions.Variable" Version="2.28.3" />
        <PackageReference Include="CMS.Extensions.Data" Version="2.28.3" />
        <PackageReference Include="CMS.Data.Stressing" Version="2.28.3" />
        <PackageReference Include="CMS.Extensions.Abp" Version="1.4.0" />
        <PackageReference Include="WebApiClientCore" Version="2.0.4" />
    </ItemGroup>
 
    <ItemGroup>
        <ProjectReference Include="..\CMS.Plugin.PipeLineLems.Application\CMS.Plugin.PipeLineLems.Application.csproj" />
        <ProjectReference Include="..\CMS.Plugin.PipeLineLems.MySQL\CMS.Plugin.PipeLineLems.MySQL.csproj" />
        <ProjectReference Include="..\CMS.Plugin.PipeLineLems.PostgreSql\CMS.Plugin.PipeLineLems.PostgreSql.csproj" />
        <ProjectReference Include="..\CMS.Plugin.PipeLineLems.SqlServer\CMS.Plugin.PipeLineLems.SqlServer.csproj" />
    </ItemGroup>
 
    <ItemGroup>
      <Resource Include="Flows\50001_1.pfd">
        <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
      </Resource>
      <Resource Include="Flows\FlowInfo.xml">
        <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
      </Resource>
    </ItemGroup>
 
    <ItemGroup>
      <None Update="Resources\Templates\WorkPlan导出模板.xlsx">
        <CopyToOutputDirectory>Always</CopyToOutputDirectory>
      </None>
    </ItemGroup>
 
</Project>