SplitApp.WebApp.csproj
2,436 bytes
| 1 | <Project Sdk="Microsoft.NET.Sdk.Web"> |
|---|---|
| 2 | |
| 3 | <ItemGroup> |
| 4 | <ProjectReference Include="..\Shared\SplitApp.Shared.Kernel\SplitApp.Shared.Kernel.csproj" /> |
| 5 | <ProjectReference Include="..\Shared\SplitApp.Shared.Contracts\SplitApp.Shared.Contracts.csproj" /> |
| 6 | <ProjectReference Include="..\Shared\SplitApp.Shared.Messaging\SplitApp.Shared.Messaging.csproj" /> |
| 7 | <ProjectReference Include="..\Modules\Trips\SplitApp.Modules.Trips.Api\SplitApp.Modules.Trips.Api.csproj" /> |
| 8 | <ProjectReference Include="..\Modules\Trips\SplitApp.Modules.Trips.Infrastructure\SplitApp.Modules.Trips.Infrastructure.csproj" /> |
| 9 | <ProjectReference Include="..\Modules\Expenses\SplitApp.Modules.Expenses.Api\SplitApp.Modules.Expenses.Api.csproj" /> |
| 10 | <ProjectReference Include="..\Modules\Expenses\SplitApp.Modules.Expenses.Infrastructure\SplitApp.Modules.Expenses.Infrastructure.csproj" /> |
| 11 | </ItemGroup> |
| 12 | |
| 13 | <ItemGroup> |
| 14 | <PackageReference Include="Asp.Versioning.Mvc.ApiExplorer" Version="8.1.1" /> |
| 15 | <PackageReference Include="MediatR" Version="12.4.1" /> |
| 16 | <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.5" /> |
| 17 | <PackageReference Include="Microsoft.AspNetCore.DataProtection" Version="10.0.5" /> |
| 18 | <PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="10.0.5" /> |
| 19 | <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.5"> |
| 20 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 21 | <PrivateAssets>all</PrivateAssets> |
| 22 | </PackageReference> |
| 23 | <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.1" /> |
| 24 | <PackageReference Include="Swashbuckle.AspNetCore" Version="10.1.7" /> |
| 25 | </ItemGroup> |
| 26 | |
| 27 | <PropertyGroup> |
| 28 | <TargetFramework>net10.0</TargetFramework> |
| 29 | <Nullable>enable</Nullable> |
| 30 | <ImplicitUsings>enable</ImplicitUsings> |
| 31 | </PropertyGroup> |
| 32 | |
| 33 | <ItemGroup> |
| 34 | <EmbeddedResource Update="Resources\Views\Shared.resx" LogicalName="App.Resources.Views.Shared.resources" /> |
| 35 | <EmbeddedResource Update="Resources\Views\Shared.et.resx" LogicalName="App.Resources.Views.Shared.et.resources" /> |
| 36 | <EmbeddedResource Update="Resources\Domain\Enums.resx" LogicalName="App.Resources.Domain.Enums.resources" /> |
| 37 | <EmbeddedResource Update="Resources\Domain\Enums.et.resx" LogicalName="App.Resources.Domain.Enums.et.resources" /> |
| 38 | </ItemGroup> |
| 39 | |
| 40 | </Project> |
| 41 | |