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-06-29 18:36:57 +02:00
|
|
|
|
<AssetTargetFallback>$(AssetTargetFallback);portable-net45+win8+wp8+wpa81;</AssetTargetFallback>
|
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-08-22 22:36:23 +02:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Cors" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Antiforgery" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="2.0.0" />
|
2017-06-22 16:19:54 +02:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.AngularServices" Version="1.1.0-beta-000002" />
|
2017-08-22 22:36:23 +02:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Options" Version="2.0.0" />
|
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-02-14 16:23:26 +01: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-02-14 16:23:26 +01:00
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="1.0.0-msbuild3-final" />
|
|
|
|
|
<DotNetCliToolReference Include="Microsoft.Extensions.SecretManager.Tools" Version="1.0.0-msbuild3-final" />
|
|
|
|
|
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="1.0.0-msbuild3-final" />
|
|
|
|
|
</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>
|
2017-06-08 17:45:07 +02:00
|
|
|
|
<ProjectReference Include="..\..\BuildingBlocks\DataProtection\DataProtection\DataProtection.csproj" />
|
2017-03-28 16:16:01 +02: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" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-02-16 12:31:53 -08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="Dockerfile">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-06-14 16:38:27 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="wwwroot\assets\" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-02-14 16:23:26 +01:00
|
|
|
|
</Project>
|