SplitApp.UsersService.csproj
1,498 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>splitapp-users-service</UserSecretsId> |
| 8 | </PropertyGroup> |
| 9 | |
| 10 | <ItemGroup> |
| 11 | <ProjectReference Include="..\..\..\Modules\Users\SplitApp.Modules.Users.Domain\SplitApp.Modules.Users.Domain.csproj" /> |
| 12 | <ProjectReference Include="..\..\..\Modules\Users\SplitApp.Modules.Users.Application\SplitApp.Modules.Users.Application.csproj" /> |
| 13 | <ProjectReference Include="..\..\..\Modules\Users\SplitApp.Modules.Users.Infrastructure\SplitApp.Modules.Users.Infrastructure.csproj" /> |
| 14 | <ProjectReference Include="..\..\..\Modules\Users\SplitApp.Modules.Users.Api\SplitApp.Modules.Users.Api.csproj" /> |
| 15 | <ProjectReference Include="..\..\..\Shared\SplitApp.Shared.Kernel\SplitApp.Shared.Kernel.csproj" /> |
| 16 | <ProjectReference Include="..\..\..\Shared\SplitApp.Shared.Contracts\SplitApp.Shared.Contracts.csproj" /> |
| 17 | <ProjectReference Include="..\..\..\Shared\SplitApp.Shared.Messaging\SplitApp.Shared.Messaging.csproj" /> |
| 18 | </ItemGroup> |
| 19 | |
| 20 | <ItemGroup> |
| 21 | <PackageReference Include="Asp.Versioning.Mvc" Version="8.1.1" /> |
| 22 | <PackageReference Include="Asp.Versioning.Mvc.ApiExplorer" Version="8.1.1" /> |
| 23 | <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.5" /> |
| 24 | <PackageReference Include="Swashbuckle.AspNetCore" Version="10.1.7" /> |
| 25 | </ItemGroup> |
| 26 | |
| 27 | </Project> |
| 28 | |