服务端的TigerApi 框架,基于.NET6 2024 版本
YangYuGang
2 天以前 83d775ba1de1913e51fb216bc24d91305811f9bf
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
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>enable</Nullable>
    <Authors>TigerClouds Team</Authors>
    <Company>深圳市钛格云科技有限公司 (SZ TigerClouds Technology Co.,Ltd.)</Company>
    <Copyright>Copyright © 2020-2025 SZ TigerClouds Technology Co.,Ltd.. All rights reserved.</Copyright>
  </PropertyGroup>
 
  <ItemGroup>
    <Compile Remove="Minsun\**" />
    <EmbeddedResource Remove="Minsun\**" />
    <None Remove="Minsun\**" />
  </ItemGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\Tiger.Business\Tiger.Business.csproj" />
    <ProjectReference Include="..\Tiger.IBusiness.WMS\Tiger.IBusiness.WMS.csproj" />
    <ProjectReference Include="..\Tiger.IBusiness\Tiger.IBusiness.csproj" />
  </ItemGroup>
 
  <Target Name="PostBuild" AfterTargets="PostBuildEvent">
    <Exec Command="xcopy /r/y/i $(ProjectDir)$(OutDir)$(AssemblyName).dll $(SolutionDir)Tiger.Api\$(OutDir)&#xD;&#xA;xcopy /r/y/i $(ProjectDir)$(OutDir)$(AssemblyName).pdb $(SolutionDir)Tiger.Api\$(OutDir)" />
  </Target>
 
</Project>