Products.API.csproj 789 B

1234567891011121314151617181920212223242526
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net10.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="10.0.0" />
  9. <PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0" />
  10. <PackageReference Include="Scalar.AspNetCore" Version="2.6.0" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <Folder Include="Controllers\" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\Products.Common\Products.Common.csproj" />
  17. <ProjectReference Include="..\Products.Business\Products.Business.csproj" />
  18. </ItemGroup>
  19. </Project>