Ips.Sps.Controllers.csproj 857 B

123456789101112131415161718192021
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <ItemGroup>
  3. <FrameworkReference Include="Microsoft.AspNetCore.App" />
  4. </ItemGroup>
  5. <ItemGroup>
  6. <ProjectReference Include="..\..\..\ipslib\Ips.Library.Basic\Ips.Library.Basic.csproj" />
  7. <ProjectReference Include="..\..\..\ipslib\Ips.Library.Entity\Ips.Library.Entity.csproj" />
  8. <ProjectReference Include="..\..\..\ipslib\Ips.Library.WebApi\Ips.Library.WebApi.csproj" />
  9. </ItemGroup>
  10. <PropertyGroup>
  11. <OutputType>Library</OutputType>
  12. <TargetFramework>net7.0</TargetFramework>
  13. <ImplicitUsings>enable</ImplicitUsings>
  14. <Nullable>disable</Nullable>
  15. <GenerateDocumentationFile>True</GenerateDocumentationFile>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  18. <DebugType>none</DebugType>
  19. <DebugSymbols>false</DebugSymbols>
  20. </PropertyGroup>
  21. </Project>