1
0

Admin.Core.Service.csproj 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net5.0</TargetFramework>
  4. <GeneratePackageOnBuild>false</GeneratePackageOnBuild>
  5. <Version>1.7.0</Version>
  6. <Authors>xiaoxue</Authors>
  7. <Company>xiaoxue</Company>
  8. <Description>中台Admin后端服务库</Description>
  9. <PackageLicenseExpression>MIT</PackageLicenseExpression>
  10. <PackageProjectUrl>https://github.com/zhontai/Admin.Core</PackageProjectUrl>
  11. <RepositoryUrl>https://github.com/zhontai/Admin.Core</RepositoryUrl>
  12. <RepositoryType>git</RepositoryType>
  13. <PackageTags>ZhonTai Admin;WebApi</PackageTags>
  14. </PropertyGroup>
  15. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  16. <OutputPath></OutputPath>
  17. <DocumentationFile>..\Admin.Core\Admin.Core.Service.xml</DocumentationFile>
  18. <NoWarn>1701;1702;1591</NoWarn>
  19. </PropertyGroup>
  20. <ItemGroup>
  21. <Compile Remove="Admin\Cache\Output\**" />
  22. <EmbeddedResource Remove="Admin\Cache\Output\**" />
  23. <None Remove="Admin\Cache\Output\**" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <PackageReference Include="AutoMapper" Version="10.1.1" />
  27. <PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="8.1.1" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <ProjectReference Include="..\Admin.Core.Model\Admin.Core.Model.csproj" />
  31. <ProjectReference Include="..\Admin.Core.Repository\Admin.Core.Repository.csproj" />
  32. <ProjectReference Include="..\Admin.Tools\Admin.Tools.csproj" />
  33. </ItemGroup>
  34. </Project>