File size: 3,304 Bytes
f7a88ba | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | <!--
***********************************************************************************************
Microsoft.NET.Sdk.Publish.ComputeFiles.targets
WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have
created a backup copy. Incorrect changes to this file will make it
impossible to load or build your web deploy projects from the command-line or the IDE.
This file defines the steps in the standard package/publish process for collecting only files to run the web appliation.
Copyright (C) Microsoft Corporation. All rights reserved.
***********************************************************************************************
-->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Only the compute target relevant to the project type will be invoked. -->
<PropertyGroup>
<_DotNetPublishComputeFiles>
_DetermineProjectType;
</_DotNetPublishComputeFiles>
</PropertyGroup>
<!--***************************************************************-->
<!-- Target _DetermineProjectType -->
<!--***************************************************************-->
<Target Name="_DetermineProjectType" >
<PropertyGroup>
<_IsAspNetCoreProject Condition="%(ProjectCapability.Identity) == 'AspNetCore'">true</_IsAspNetCoreProject>
<_PublishProjectType Condition="'$(_PublishProjectType)' == '' and '$(_IsAspNetCoreProject)' == 'true' ">AspNetCore</_PublishProjectType>
<_PublishProjectType Condition="'$(_PublishProjectType)' == '' and '$(WebJobName)' != '' and '$(WebJobType)' != ''">WebJob</_PublishProjectType>
<_PublishProjectType Condition="'$(_PublishProjectType)' == '' ">Console</_PublishProjectType>
</PropertyGroup>
</Target>
<!--********************************************************************-->
<!-- This will ensure that all values have the required metadata -->
<!--********************************************************************-->
<ItemDefinitionGroup>
<DotNetPublishFiles>
<DestinationRelativePath></DestinationRelativePath>
<Exclude>False</Exclude>
</DotNetPublishFiles>
</ItemDefinitionGroup>
<!--***************************************************************-->
<!-- Target _IncludePrePublishGeneratedContent -->
<!--***************************************************************-->
<Target Name="_IncludePrePublishGeneratedContent" BeforeTargets="GetCopyToPublishDirectoryItems" Condition=" '$(EnableDefaultItems)' == 'true' And '$(EnableDefaultContentItems)' == 'true' ">
<ItemGroup>
<!-- First, clean up previously generated content that may have been removed. -->
<ContentWithTargetPath Remove="@(ContentWithTargetPath)" Condition="!Exists('%(Identity)')" />
<!-- Next, include any newly generated content. -->
<_WebProjectGeneratedContent Include="wwwroot\**" Exclude="$(DefaultItemExcludes);$(DefaultExcludesInProjectFolder);@(_ContentIncludedByDefault)" />
<ContentWithTargetPath Include="@(_WebProjectGeneratedContent)" TargetPath="%(Identity)" CopyToPublishDirectory="PreserveNewest" />
</ItemGroup>
</Target>
</Project>
|