2017-02-14 18:11:51 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2017-02-14 16:23:26 +01:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-10-27 17:56:07 +05:30
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2017-02-14 16:23:26 +01:00
|
|
|
|
<DebugType>portable</DebugType>
|
|
|
|
|
<PreserveCompilationContext>true</PreserveCompilationContext>
|
|
|
|
|
<AssemblyName>Catalog.API</AssemblyName>
|
|
|
|
|
<PackageId>Catalog.API</PackageId>
|
|
|
|
|
<UserSecretsId>aspnet-Catalog.API-20161122013618</UserSecretsId>
|
2017-02-14 18:11:51 +01:00
|
|
|
|
<DockerComposeProjectPath>..\..\..\..\docker-compose.dcproj</DockerComposeProjectPath>
|
2019-07-24 12:15:38 +02:00
|
|
|
|
<GenerateErrorForMissingTargetingPacks>false</GenerateErrorForMissingTargetingPacks>
|
2023-02-23 14:58:59 -08:00
|
|
|
|
<IsTransformWebConfigDisabled>true</IsTransformWebConfigDisabled>
|
2017-02-14 16:23:26 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2017-08-31 17:16:28 +02:00
|
|
|
|
<Content Update="appsettings.json">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2017-02-15 10:44:59 -05:00
|
|
|
|
<Content Update="wwwroot;">
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Pics\**\*;">
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
</Content>
|
2017-06-20 12:54:32 -07:00
|
|
|
|
<Content Include="Setup\**\*;">
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Remove="Setup\Catalogitems - Copy.zip" />
|
|
|
|
|
<None Remove="Setup\Catalogitems - Copy.zip" />
|
2017-03-15 18:42:47 -07:00
|
|
|
|
<Compile Include="IntegrationEvents\EventHandling\AnyFutureIntegrationEventHandler.cs.txt" />
|
2017-02-15 10:44:59 -05:00
|
|
|
|
<Content Update="web.config;">
|
2017-02-14 16:23:26 +01:00
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2019-06-26 12:58:07 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Protobuf Include="Proto\catalog.proto" GrpcServices="Server" Generator="MSBuild:Compile" />
|
|
|
|
|
<Content Include="@(Protobuf)" />
|
|
|
|
|
<None Remove="@(Protobuf)" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-02-14 16:23:26 +01:00
|
|
|
|
<ItemGroup>
|
2023-02-23 14:58:59 -08:00
|
|
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" />
|
|
|
|
|
<PackageReference Include="Azure.Identity" />
|
|
|
|
|
<PackageReference Include="AspNetCore.HealthChecks.AzureServiceBus" />
|
|
|
|
|
<PackageReference Include="AspNetCore.HealthChecks.AzureStorage" />
|
|
|
|
|
<PackageReference Include="AspNetCore.HealthChecks.Rabbitmq" />
|
|
|
|
|
<PackageReference Include="AspNetCore.HealthChecks.SqlServer" />
|
|
|
|
|
<PackageReference Include="AspNetCore.HealthChecks.UI.Client" />
|
|
|
|
|
<PackageReference Include="Autofac.Extensions.DependencyInjection" />
|
|
|
|
|
<PackageReference Include="Google.Protobuf" />
|
|
|
|
|
<PackageReference Include="Grpc.AspNetCore.Server" />
|
|
|
|
|
<PackageReference Include="Grpc.Tools" PrivateAssets="All" />
|
|
|
|
|
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" />
|
|
|
|
|
<PackageReference Include="Microsoft.ApplicationInsights.DependencyCollector" />
|
|
|
|
|
<PackageReference Include="Microsoft.ApplicationInsights.Kubernetes" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.HealthChecks" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.AzureAppServices" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyModel" />
|
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" />
|
|
|
|
|
<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="Microsoft.EntityFrameworkCore.Proxies" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools">
|
2022-11-29 00:56:35 +05:30
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2017-02-14 16:23:26 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-03-09 15:56:34 +01:00
|
|
|
|
<ItemGroup>
|
2017-03-16 13:30:01 +01:00
|
|
|
|
<ProjectReference Include="..\..\..\BuildingBlocks\EventBus\EventBusRabbitMQ\EventBusRabbitMQ.csproj" />
|
2017-05-24 15:33:05 +02:00
|
|
|
|
<ProjectReference Include="..\..\..\BuildingBlocks\EventBus\EventBusServiceBus\EventBusServiceBus.csproj" />
|
2017-03-16 13:30:01 +01:00
|
|
|
|
<ProjectReference Include="..\..\..\BuildingBlocks\EventBus\EventBus\EventBus.csproj" />
|
2017-03-22 16:10:46 +01:00
|
|
|
|
<ProjectReference Include="..\..\..\BuildingBlocks\EventBus\IntegrationEventLogEF\IntegrationEventLogEF.csproj" />
|
2017-03-09 15:56:34 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-02-16 12:31:53 -08:00
|
|
|
|
<ItemGroup>
|
2017-02-16 16:30:46 -08:00
|
|
|
|
<None Update="Pics\*">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2017-02-16 12:37:09 -08:00
|
|
|
|
</None>
|
2017-06-20 12:54:32 -07:00
|
|
|
|
<None Update="Setup\*">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2017-02-16 12:31:53 -08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-02-14 16:23:26 +01:00
|
|
|
|
</Project>
|