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-02-14 16:23:26 +01:00
|
|
|
|
<UserSecretsId>aspnetcorespa-c23d27a4-eb88-4b18-9b77-2a93f3b15119</UserSecretsId>
|
2017-02-22 09:16:31 +01:00
|
|
|
|
<DockerComposeProjectPath>..\..\..\docker-compose.dcproj</DockerComposeProjectPath>
|
2017-02-17 13:26:42 +01:00
|
|
|
|
<TypeScriptCompileOnSaveEnabled>false</TypeScriptCompileOnSaveEnabled>
|
|
|
|
|
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
|
2017-04-13 10:51:19 +02:00
|
|
|
|
<GeneratedItemPatterns>wwwroot/dist/**</GeneratedItemPatterns>
|
|
|
|
|
<DefaultItemExcludes>$(DefaultItemExcludes);$(GeneratedItemPatterns)</DefaultItemExcludes>
|
2017-02-14 16:23:26 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="node_modules\**\*;Client\**\*" />
|
2017-06-20 12:54:32 -07:00
|
|
|
|
<Content Include="Setup\images.zip">
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
</Content>
|
2017-02-15 10:44:59 -05:00
|
|
|
|
<Content Update="appsettings.json;">
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Update="web.config;">
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Update="wwwroot\**\*;">
|
2017-02-14 16:23:26 +01:00
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2017-10-11 16:26:44 +02:00
|
|
|
|
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.1.1" />
|
2017-10-11 18:53:26 +02:00
|
|
|
|
<PackageReference Include="Microsoft.ApplicationInsights.DependencyCollector" Version="2.4.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.ApplicationInsights.Kubernetes" Version="1.0.0-beta1" />
|
2017-12-11 18:05:27 +03:00
|
|
|
|
<PackageReference Include="Microsoft.ApplicationInsights.ServiceFabric" Version="2.0.1-beta1" />
|
2017-12-11 17:49:37 +03:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.3" />
|
2017-11-30 11:40:30 +01:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.DataProtection.Redis" Version="0.3.1" />
|
2017-06-22 16:19:54 +02:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
|
2017-02-14 16:23:26 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-04-13 10:51:19 +02:00
|
|
|
|
<!-- workaround for https://github.com/aspnet/websdk/issues/114 -->
|
2017-11-27 13:48:31 -08:00
|
|
|
|
<!--<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
|
2017-02-15 10:44:59 -05:00
|
|
|
|
<Exec Command="npm install" />
|
2017-02-14 16:23:26 +01:00
|
|
|
|
<Exec Command="npm run build:prod" />
|
2017-04-13 10:51:19 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<_GeneratedFiles Include="$(GeneratedItemPatterns)" />
|
|
|
|
|
<ContentWithTargetPath Include="@(_GeneratedFiles)" TargetPath="%(Identity)" CopyToPublishDirectory="PreserveNewest" />
|
|
|
|
|
</ItemGroup>
|
2017-11-27 13:48:31 -08:00
|
|
|
|
</Target>-->
|
2017-02-14 16:23:26 +01:00
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2017-08-29 12:14:10 +02:00
|
|
|
|
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="2.0.0" />
|
|
|
|
|
<DotNetCliToolReference Include="Microsoft.Extensions.SecretManager.Tools" Version="2.0.0" />
|
2017-12-11 17:49:37 +03:00
|
|
|
|
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.1" />
|
2017-02-14 16:23:26 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-03-17 17:56:23 -07:00
|
|
|
|
<!-- workaround for https://github.com/aspnet/websdk/issues/114 -->
|
2017-05-09 21:04:04 +02:00
|
|
|
|
<!--
|
2017-03-17 17:56:23 -07:00
|
|
|
|
<Target Name="AddGeneratedContentItems" BeforeTargets="AssignTargetPaths" DependsOnTargets="PrepareForPublish">
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="wwwroot/**" CopyToPublishDirectory="PreserveNewest" Exclude="$(DefaultItemExcludes);$(DefaultExcludesInProjectFolder);@(Content)" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Target>
|
2017-05-09 21:04:04 +02:00
|
|
|
|
-->
|
|
|
|
|
|
2017-03-28 16:16:01 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\BuildingBlocks\HealthChecks\src\Microsoft.AspNetCore.HealthChecks\Microsoft.AspNetCore.HealthChecks.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\BuildingBlocks\HealthChecks\src\Microsoft.Extensions.HealthChecks\Microsoft.Extensions.HealthChecks.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-06-14 16:38:27 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="wwwroot\assets\" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-11-30 11:40:30 +01:00
|
|
|
|
<ProjectExtensions><VisualStudio><UserProperties package-lock_1json__JSONSchema="http://json.schemastore.org/bower" /></VisualStudio></ProjectExtensions>
|
|
|
|
|
|
2017-02-14 16:23:26 +01:00
|
|
|
|
</Project>
|