wispro.sp.api.csproj 1.2 KB

12345678910111213141516171819202122232425262728
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net5.0</TargetFramework>
  4. <Platforms>AnyCPU;x64;x86</Platforms>
  5. </PropertyGroup>
  6. <ItemGroup>
  7. <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.18" />
  8. <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.10" />
  9. <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.9">
  10. <PrivateAssets>all</PrivateAssets>
  11. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  12. </PackageReference>
  13. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.9" />
  14. <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\wispro.sp.share\wispro.sp.share.csproj" />
  18. <ProjectReference Include="..\wispro.sp.utility\wispro.sp.utility.csproj" />
  19. <ProjectReference Include="..\wospro.sp.entity\wispro.sp.entity.csproj" />
  20. </ItemGroup>
  21. <ProjectExtensions><VisualStudio><UserProperties appsettings_1json__JsonSchema="" /></VisualStudio></ProjectExtensions>
  22. </Project>