summaryrefslogtreecommitdiff
path: root/.packages/microsoft.dotnet.arcade.sdk/1.0.0-beta.19577.5/sdk/Sdk.targets
diff options
context:
space:
mode:
authorGleb Balykov <g.balykov@samsung.com>2020-03-10 19:22:08 +0300
committerGleb Balykov <g.balykov@samsung.com>2020-03-25 15:29:17 +0300
commite8fc07ce861be7a724e642dddee9023b2be7b0bb (patch)
treed2c6f7e28c4494d84af36345ded81c52bb63e02f /.packages/microsoft.dotnet.arcade.sdk/1.0.0-beta.19577.5/sdk/Sdk.targets
parentc5d3d752260383fbed72ba2b4d86d82fea673c76 (diff)
downloadcoreclr-e8fc07ce861be7a724e642dddee9023b2be7b0bb.tar.gz
coreclr-e8fc07ce861be7a724e642dddee9023b2be7b0bb.tar.bz2
coreclr-e8fc07ce861be7a724e642dddee9023b2be7b0bb.zip
[Tizen] Add BuildTools v3.1.3
Diffstat (limited to '.packages/microsoft.dotnet.arcade.sdk/1.0.0-beta.19577.5/sdk/Sdk.targets')
-rwxr-xr-x.packages/microsoft.dotnet.arcade.sdk/1.0.0-beta.19577.5/sdk/Sdk.targets26
1 files changed, 26 insertions, 0 deletions
diff --git a/.packages/microsoft.dotnet.arcade.sdk/1.0.0-beta.19577.5/sdk/Sdk.targets b/.packages/microsoft.dotnet.arcade.sdk/1.0.0-beta.19577.5/sdk/Sdk.targets
new file mode 100755
index 0000000000..9a7667498f
--- /dev/null
+++ b/.packages/microsoft.dotnet.arcade.sdk/1.0.0-beta.19577.5/sdk/Sdk.targets
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. -->
+<Project>
+ <!--
+ If a project specifies ExcludeFromSourceBuild=true during a source build suppress all targets and emulate a no-op
+ (empty common targets like Restore, Build, Pack, etc.).
+ -->
+ <PropertyGroup>
+ <_SuppressAllTargets>false</_SuppressAllTargets>
+ <_SuppressAllTargets Condition="'$(DotNetBuildFromSource)' == 'true' and '$(ExcludeFromSourceBuild)' == 'true'">true</_SuppressAllTargets>
+ </PropertyGroup>
+
+ <!--
+ Output the location of the Build.proj so that the build driver can find where it was restored.
+ Ideally we would have msbuild API to do that for an SDK: https://github.com/Microsoft/msbuild/issues/2992
+ -->
+ <Target Name="__WriteToolsetLocation" Outputs="$(__ToolsetLocationOutputFile)" Condition="'$(__ToolsetLocationOutputFile)' != ''">
+ <WriteLinesToFile File="$(__ToolsetLocationOutputFile)" Lines="$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\tools\Build.proj'))" Overwrite="true"/>
+ <ItemGroup>
+ <FileWrites Include="$(__ToolsetLocationOutputFile)" />
+ </ItemGroup>
+ </Target>
+
+ <Import Project="..\tools\Imports.targets" Condition="!$(_SuppressSdkImports) and !$(_SuppressAllTargets)" />
+ <Import Project="..\tools\Empty.targets" Condition="!$(_SuppressSdkImports) and $(_SuppressAllTargets)"/>
+</Project>