2017-02-14 18:11:51 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2017-02-14 16:23:26 +01:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2017-06-21 19:03:48 +02:00
|
|
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
2017-06-29 18:36:57 +02:00
|
|
|
|
<AssetTargetFallback>$(AssetTargetFallback);portable-net45+win8+wp8+wpa81;</AssetTargetFallback>
|
2017-02-14 18:11:51 +01:00
|
|
|
|
<DockerComposeProjectPath>..\..\..\..\docker-compose.dcproj</DockerComposeProjectPath>
|
2017-02-14 16:23:26 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2017-02-15 10:44:59 -05:00
|
|
|
|
<Content Update="web.config">
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include=".dockerignore">
|
2017-02-14 16:23:26 +01:00
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2017-08-29 10:20:13 +02:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.0" />
|
2017-06-12 13:52:23 +02:00
|
|
|
|
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="4.1.0" />
|
2017-07-12 12:10:10 +02:00
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="1.0.0" />
|
2017-02-14 16:23:26 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-03-10 13:17:16 +01:00
|
|
|
|
<ItemGroup>
|
2017-03-16 13:30:01 +01:00
|
|
|
|
<ProjectReference Include="..\..\..\BuildingBlocks\EventBus\EventBusRabbitMQ\EventBusRabbitMQ.csproj" />
|
2017-05-24 15:33:38 +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-23 19:10:55 +01:00
|
|
|
|
<ProjectReference Include="..\..\..\BuildingBlocks\HealthChecks\src\Microsoft.AspNetCore.HealthChecks\Microsoft.AspNetCore.HealthChecks.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\..\BuildingBlocks\HealthChecks\src\Microsoft.Extensions.HealthChecks\Microsoft.Extensions.HealthChecks.csproj" />
|
2017-03-10 13:17:16 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-02-16 12:31:53 -08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="Dockerfile">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-02-14 16:23:26 +01:00
|
|
|
|
</Project>
|