WebApp.csproj
1,662 bytes
| 1 | <Project Sdk="Microsoft.NET.Sdk.Web"> |
|---|---|
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <TargetFramework>net10.0</TargetFramework> |
| 5 | <Nullable>enable</Nullable> |
| 6 | <ImplicitUsings>enable</ImplicitUsings> |
| 7 | <UserSecretsId>aspnet-WebApp-21a2a4db-c8e5-47dc-842a-2a7ec387283e</UserSecretsId> |
| 8 | </PropertyGroup> |
| 9 | |
| 10 | <ItemGroup> |
| 11 | <PackageReference Include="Asp.Versioning.Mvc.ApiExplorer" Version="8.1.1" /> |
| 12 | <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.5" /> |
| 13 | <PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="10.0.5" /> |
| 14 | <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.5" /> |
| 15 | <PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="10.0.5" /> |
| 16 | <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.5"> |
| 17 | <PrivateAssets>all</PrivateAssets> |
| 18 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 19 | </PackageReference> |
| 20 | <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.1" /> |
| 21 | <PackageReference Include="Swashbuckle.AspNetCore" Version="10.1.7" /> |
| 22 | </ItemGroup> |
| 23 | |
| 24 | <ItemGroup> |
| 25 | <ProjectReference Include="..\App.DAL.EF\App.DAL.EF.csproj" /> |
| 26 | <ProjectReference Include="..\App.DTO\App.DTO.csproj" /> |
| 27 | <ProjectReference Include="..\App.Resources\App.Resources.csproj" /> |
| 28 | <ProjectReference Include="..\Base.Helpers\Base.Helpers.csproj" /> |
| 29 | <ProjectReference Include="..\App.BLL\App.BLL.csproj" /> |
| 30 | </ItemGroup> |
| 31 | |
| 32 | </Project> |
| 33 | |