65 lines
3.5 KiB
XML
65 lines
3.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AspNetCore.HealthChecks.AzureServiceBus" />
|
|
<PackageReference Include="AspNetCore.HealthChecks.Rabbitmq" />
|
|
<PackageReference Include="AspNetCore.HealthChecks.SqlServer" />
|
|
<PackageReference Include="AspNetCore.HealthChecks.UI.Client" />
|
|
<PackageReference Include="Autofac.Extensions.DependencyInjection" />
|
|
<PackageReference Include="Duende.IdentityServer.AspNetIdentity" />
|
|
<PackageReference Include="Duende.IdentityServer.EntityFramework.Storage" />
|
|
<PackageReference Include="Duende.IdentityServer.EntityFramework" />
|
|
<PackageReference Include="Duende.IdentityServer.Storage" />
|
|
<PackageReference Include="Duende.IdentityServer" />
|
|
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" />
|
|
<PackageReference Include="Microsoft.ApplicationInsights.DependencyCollector" />
|
|
<PackageReference Include="Microsoft.ApplicationInsights.Kubernetes" />
|
|
<PackageReference Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.HealthChecks" />
|
|
<PackageReference Include="Microsoft.AspNetCore.HealthChecks" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.AzureAppServices" />
|
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" />
|
|
<PackageReference Include="Microsoft.Web.LibraryManager.Build" />
|
|
<PackageReference Include="Polly" />
|
|
<PackageReference Include="Serilog.AspNetCore" />
|
|
<PackageReference Include="Serilog.Enrichers.Environment" />
|
|
<PackageReference Include="Serilog.Settings.Configuration" />
|
|
<PackageReference Include="Serilog.Sinks.Console" />
|
|
<PackageReference Include="Serilog.Sinks.Http" />
|
|
<PackageReference Include="Serilog.Sinks.Seq" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore.Newtonsoft" />
|
|
<PackageReference Include="System.Data.SqlClient" />
|
|
<PackageReference Include="Azure.Extensions.AspNetCore.Configuration.Secrets" />
|
|
<PackageReference Include="Azure.Identity" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\BuildingBlocks\EventBus\EventBusRabbitMQ\EventBusRabbitMQ.csproj" />
|
|
<ProjectReference Include="..\..\BuildingBlocks\EventBus\EventBusServiceBus\EventBusServiceBus.csproj" />
|
|
<ProjectReference Include="..\..\BuildingBlocks\EventBus\EventBus\EventBus.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|