<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
<TargetFramework>net8.0</TargetFramework>
|
<ImplicitUsings>enable</ImplicitUsings>
|
<Nullable>enable</Nullable>
|
<BaseOutputPath>..\Gs.HostIIS\bin</BaseOutputPath>
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
<OutputPath>..\Gs.HostIIS\bin\Debug\</OutputPath>
|
<DocumentationFile></DocumentationFile>
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
<OutputPath>..\Gs.HostIIS\bin\Release\</OutputPath>
|
</PropertyGroup>
|
|
<ItemGroup>
|
<PackageReference Include="SqlSugarCore" Version="5.1.4.167" />
|
</ItemGroup>
|
|
<ItemGroup>
|
<ProjectReference Include="..\Gs.Entity\Gs.Entity.csproj" />
|
<ProjectReference Include="..\Gs.Toolbox\Gs.Toolbox.csproj" />
|
</ItemGroup>
|
|
<ItemGroup>
|
<Compile Remove="Services\MesInvItemArnDetailManager.cs" />
|
<Compile Remove="Services\MesInvItemOutsManager.cs" />
|
</ItemGroup>
|
|
</Project>
|