lingling
2025-03-07 1b33c9c58b57bde6b60de30dfc8727132b92829d
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
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>enable</Nullable>
    <RootNamespace>$(MSBuildProjectName.Replace(" ", "_").Replace("12333", "LifePaymentServices"))</RootNamespace>
    <AssemblyName>$(MSBuildProjectName.Replace("12333", "LifePaymentServices"))</AssemblyName>
  </PropertyGroup>
 
  <ItemGroup>
    <Compile Remove="Worker\**" />
    <EmbeddedResource Remove="Worker\**" />
    <None Remove="Worker\**" />
  </ItemGroup>
 
  <ItemGroup>
    <None Remove="appsettings.json" />
  </ItemGroup>
 
  <ItemGroup>
    <Content Include="appsettings.json">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
      <ExcludeFromSingleFile>true</ExcludeFromSingleFile>
      <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
    </Content>
  </ItemGroup>
 
  <ItemGroup>
    <PackageReference Include="Serilog.AspNetCore" Version="4.1.0" />
    <PackageReference Include="Volo.Abp.Core" Version="5.8.112" />
    <PackageReference Include="Volo.Abp.EntityFrameworkCore.SqlServer" Version="5.8.111" />
    <PackageReference Include="Volo.Abp.Identity.Application" Version="2.2.111" />
    <PackageReference Include="Volo.Abp.Identity.EntityFrameworkCore" Version="2.2.111" />
  </ItemGroup>
 
  <ItemGroup>
    <Folder Include="Properties\" />
  </ItemGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\LifePayment.Application\LifePayment.Application.csproj" />
    <ProjectReference Include="..\LifePayment.EntityFrameworkCore\LifePayment.EntityFrameworkCore.csproj" />
  </ItemGroup>
 
</Project>