heyuntao
2023-05-04 fbd6a11a99051f425640bf352842f4a0ecaa7a4d
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
<Project Sdk="Microsoft.NET.Sdk.Web">
 
  <PropertyGroup>
    <TargetFramework>netcoreapp3.1</TargetFramework>
    <UserSecretsId>13ac17d4-5d1b-4839-903e-f9a3e9c361a6</UserSecretsId>
  </PropertyGroup>
 
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
    <DocumentationFile>Api.Operater.xml</DocumentationFile>
  </PropertyGroup>
 
  <ItemGroup>
    <Compile Remove="Controllers\AlibabaOAuthController.cs" />
    <Compile Remove="Controllers\LoginController.cs" />
    <Compile Remove="Controllers\ProductInfoController.cs" />
    <Compile Remove="Controllers\ProductManageController.cs" />
    <Compile Remove="Controllers\RefundManageController.cs" />
    <Compile Remove="Controllers\TestController.cs" />
    <Compile Remove="Controllers\TradeController.cs" />
  </ItemGroup>
 
  <ItemGroup>
    <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.23" />
    <PackageReference Include="QRCoderNetCore" Version="1.0.0" />
    <PackageReference Include="Snowflake.Core" Version="2.0.0" />
    <PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
  </ItemGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\DbAccess\DbAccess.csproj" />
    <ProjectReference Include="..\DkSdkCore\DkSdkCore.csproj" />
    <ProjectReference Include="..\Operater.Common\Operater.Common.csproj" />
    <ProjectReference Include="..\Operater.DAL\Operater.DAL.csproj" />
    <ProjectReference Include="..\Opreater.Service\Operater.Service.csproj" />
  </ItemGroup>
 
  <ItemGroup>
    <Content Update="appsettings.json">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </Content>
  </ItemGroup>
 
  <ItemGroup>
    <Folder Include="Properties\PublishProfiles\" />
  </ItemGroup>
 
  <ItemGroup>
    <None Update="Api.Operater.xml">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </None>
  </ItemGroup>
 
 
</Project>