Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric St. John <ericstj@microsoft.com>2017-04-08 02:12:20 +0300
committerEric St. John <ericstj@microsoft.com>2017-04-08 03:02:41 +0300
commitcf28f5105ac4bbcb9d19fa71a90fe4a219e0994b (patch)
tree652cc016424f89ee2ae7a3977fd3e190820b2fe2 /pkg/dir.targets
parentb7153b2f56f1a3dd49a67d4eca7dd78c791e8539 (diff)
Share content template across framework pkgs
Previously the content items/targets were duplicated between the UAP and NETCoreApp pkgprojs. This refactors it into shared targets. The mechanism for opt-in to this traversal behavior is to set a property IsFrameworkPackage=true.
Diffstat (limited to 'pkg/dir.targets')
-rw-r--r--pkg/dir.targets2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/dir.targets b/pkg/dir.targets
index 53e5d2320f..7c12c49fea 100644
--- a/pkg/dir.targets
+++ b/pkg/dir.targets
@@ -1,6 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" InitialTargets="CheckForBuildTools" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Condition="'$(IsFrameworkPackage)' == 'true'" Project="frameworkPackage.targets" />
+
<Import Project="..\dir.targets" />
<Target Name="ApplyBaselineToStaticDependencies"