34 lines
2.3 KiB
XML
34 lines
2.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<PublishAot>false</PublishAot>
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<NoWarn>$(NoWarn);1591</NoWarn>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Grpc.AspNetCore" Version="2.76.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.2" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.2">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Modules\Catalog\Infrastructure\Nashel.Modules.Catalog.Infrastructure.csproj" />
|
|
<ProjectReference Include="..\Modules\Catalog\Presentation\Nashel.Modules.Catalog.Presentation.csproj" />
|
|
<ProjectReference Include="..\Modules\Collaboration\Infrastructure\Nashel.Modules.Collaboration.Infrastructure.csproj" />
|
|
<ProjectReference Include="..\Modules\Collaboration\Presentation\Nashel.Modules.Collaboration.Presentation.csproj" />
|
|
<ProjectReference Include="..\Modules\Geo\Infrastructure\Nashel.Modules.Geo.Infrastructure.csproj" />
|
|
<ProjectReference Include="..\Modules\Geo\Presentation\Nashel.Modules.Geo.Presentation.csproj" />
|
|
<ProjectReference Include="..\Modules\Identity\Infrastructure\Nashel.Modules.Identity.Infrastructure.csproj" />
|
|
<ProjectReference Include="..\Modules\Identity\Presentation\Nashel.Modules.Identity.Presentation.csproj" />
|
|
<ProjectReference Include="..\Modules\Order\Infrastructure\Nashel.Modules.Order.Infrastructure.csproj" />
|
|
<ProjectReference Include="..\Modules\Order\Presentation\Nashel.Modules.Order.Presentation.csproj" />
|
|
<ProjectReference Include="..\Modules\Reputation\Infrastructure\Nashel.Modules.Reputation.Infrastructure.csproj" />
|
|
<ProjectReference Include="..\Modules\Reputation\Presentation\Nashel.Modules.Reputation.Presentation.csproj" />
|
|
</ItemGroup>
|
|
</Project> |