<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>
|
<ProjectReference Include="..\Tiger.IBusiness.MES\Tiger.IBusiness.MES.csproj" />
|
</ItemGroup>
|
|
<ItemGroup>
|
<Folder Include="Extensions\" />
|
</ItemGroup>
|
|
<ItemGroup>
|
<Reference Include="Tiger.Business">
|
<HintPath>..\Lib\Tiger.Business.dll</HintPath>
|
</Reference>
|
<Reference Include="Tiger.IBusiness">
|
<HintPath>..\Lib\Tiger.IBusiness.dll</HintPath>
|
</Reference>
|
</ItemGroup>
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
<Exec Command="xcopy /r/y/i $(ProjectDir)$(OutDir)$(AssemblyName).dll $(SolutionDir)Tiger.Api\$(OutDir)
xcopy /r/y/i $(ProjectDir)$(OutDir)$(AssemblyName).pdb $(SolutionDir)Tiger.Api\$(OutDir)" />
|
</Target>
|
|
</Project>
|