Spaces:
Paused
Paused
| <Project Sdk="Microsoft.NET.Sdk.Web"> | |
| <PropertyGroup> | |
| <TargetFramework>net8.0</TargetFramework> | |
| <Nullable>enable</Nullable> | |
| <ImplicitUsings>enable</ImplicitUsings> | |
| <UserSecretsId>d59dff06-6a26-4e35-be1d-771f4cf795d2</UserSecretsId> | |
| </PropertyGroup> | |
| <ItemGroup> | |
| <PackageReference Include="Google.Apis.Auth" Version="1.72.0" /> | |
| <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.0" /> | |
| <PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.9" /> | |
| <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.9" /> | |
| <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.9"> | |
| <PrivateAssets>all</PrivateAssets> | |
| <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | |
| </PackageReference> | |
| <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.9" /> | |
| <PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="9.0.9" /> | |
| <PackageReference Include="Microsoft.IdentityModel.Tokens" Version="8.14.0" /> | |
| <PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" /> | |
| <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.14.0" /> | |
| </ItemGroup> | |
| <ItemGroup> | |
| <ProjectReference Include="..\Application\Application.csproj" /> | |
| <ProjectReference Include="..\Infrastructure\Infrastructure.csproj" /> | |
| <ProjectReference Include="..\Entities\Entities.csproj" /> | |
| </ItemGroup> | |
| </Project> | |