SMP - Backup.Api.Base.csproj 1000 B

1234567891011121314151617181920212223242526272829303132
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <LangVersion>preview</LangVersion>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <Compile Remove="Controllers\Enum\**" />
  10. <Content Remove="Controllers\Enum\**" />
  11. <EmbeddedResource Remove="Controllers\Enum\**" />
  12. <None Remove="Controllers\Enum\**" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.3" />
  16. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <PackageReference Include="AgileConfig.Client" Version="1.1.2" />
  20. <ProjectReference Include="..\..\1.Common\SMP.Common\SMP.Common.csproj" />
  21. <ProjectReference Include="..\..\3.Service\SMP.Service\SMP.Service.csproj" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <Folder Include="Controllers\Compute\" />
  25. </ItemGroup>
  26. </Project>