0
0

ZhonTai.ApiUI.csproj 914 B

12345678910111213141516171819202122232425
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>netstandard2.0;netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
  4. </PropertyGroup>
  5. <PropertyGroup>
  6. <Description>中台Api UI库</Description>
  7. <PackageTags>Api UI;Swagger UI;</PackageTags>
  8. </PropertyGroup>
  9. <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
  10. <PackageReference Include="Microsoft.AspNetCore.Routing" Version="2.1.0" />
  11. <PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.1.0" />
  12. <PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="2.1.0" />
  13. <PackageReference Include="System.Text.Json" Version="4.6.0" />
  14. </ItemGroup>
  15. <ItemGroup Condition=" '$(TargetFramework)' != 'netstandard2.0' ">
  16. <FrameworkReference Include="Microsoft.AspNetCore.App" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <EmbeddedResource Include="src/dist/**/*" />
  20. </ItemGroup>
  21. </Project>