Fix dotnet-build.sh
[platform/core/dotnet/build-tools.git] / dotnet / sdk / 2.0.0-preview1-005977 / Sdks / Microsoft.NET.Sdk.Publish / build / netstandard1.0 / PublishTargets / Microsoft.NET.Sdk.Publish.Docker.targets
1 <!--\r
2 ***********************************************************************************************\r
3 Microsoft.NET.Sdk.Publish.Docker.targets\r
4 \r
5 WARNING:  DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have\r
6           created a backup copy.  Incorrect changes to this file will make it\r
7           impossible to load or build your web deploy projects from the command-line or the IDE.\r
8 \r
9 This file defines the steps in the standard build process to deploy web application projects.\r
10 \r
11 Copyright (C) Microsoft Corporation. All rights reserved.\r
12 ***********************************************************************************************\r
13 -->\r
14 \r
15 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
16 \r
17   <PropertyGroup>\r
18     <_DotNetPublishFiles>\r
19       DockerPublish;\r
20     </_DotNetPublishFiles>\r
21   </PropertyGroup>\r
22 \r
23   <!--\r
24   ***********************************************************************************************\r
25   TARGET : DockerPublish\r
26   ***********************************************************************************************\r
27  -->\r
28   <PropertyGroup>\r
29     <DockerPublishDependsOn>\r
30       $(DockerPublishDependsOn);\r
31       _InitDockerComposeBuildSource;\r
32       DockerComposeBuild;\r
33     </DockerPublishDependsOn>\r
34   </PropertyGroup>\r
35 \r
36   <Target Name="DockerPublish"\r
37           DependsOnTargets="$(DockerPublishDependsOn)" />\r
38 \r
39   <!--\r
40   ***********************************************************************************************\r
41   TARGET : _InitDockerComposeBuildSource\r
42   ***********************************************************************************************\r
43  -->\r
44 \r
45   <Target Name="_InitDockerComposeBuildSource">\r
46     <PropertyGroup>\r
47       <DockerComposeBuildSource>$(PublishIntermediateOutputPath)</DockerComposeBuildSource>\r
48     </PropertyGroup>\r
49 \r
50   </Target>\r
51 \r
52 </Project>