SplitApp.Modules.Trips.Api.csproj
1,043 bytes
| 1 | <Project Sdk="Microsoft.NET.Sdk.Razor"> |
|---|---|
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <TargetFramework>net10.0</TargetFramework> |
| 5 | <Nullable>enable</Nullable> |
| 6 | <ImplicitUsings>enable</ImplicitUsings> |
| 7 | </PropertyGroup> |
| 8 | |
| 9 | |
| 10 | <ItemGroup> |
| 11 | <SupportedPlatform Include="browser" /> |
| 12 | </ItemGroup> |
| 13 | |
| 14 | <ItemGroup> |
| 15 | <PackageReference Include="Asp.Versioning.Mvc" Version="8.1.0" /> |
| 16 | <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.5" /> |
| 17 | <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="10.0.0" /> |
| 18 | </ItemGroup> |
| 19 | |
| 20 | <ItemGroup> |
| 21 | <ProjectReference Include="..\SplitApp.Modules.Trips.Application\SplitApp.Modules.Trips.Application.csproj" /> |
| 22 | <ProjectReference Include="..\..\..\Shared\SplitApp.Shared.Kernel\SplitApp.Shared.Kernel.csproj" /> |
| 23 | <ProjectReference Include="..\..\..\Shared\SplitApp.Shared.Contracts\SplitApp.Shared.Contracts.csproj" /> |
| 24 | <ProjectReference Include="..\..\..\Shared\SplitApp.Shared.Messaging\SplitApp.Shared.Messaging.csproj" /> |
| 25 | </ItemGroup> |
| 26 | |
| 27 | </Project> |
| 28 | |