Skip to content

Commit

Permalink
Added gitignored file to control inner loop solution (microsoft#1513)
Browse files Browse the repository at this point in the history
Added gitignored area props file so that using the inner loop solution can be easier.
  • Loading branch information
teaP authored Oct 31, 2019
1 parent 2a1ed29 commit 421f308
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ CodeCoverageOutput/

# Private (not-checked-in) build properties
local.props
InnerLoopAreas.props

# Files from OS repo to ignore
.cachedFileHashes
Expand Down
2 changes: 2 additions & 0 deletions FeatureAreas.props
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@
<FeatureTreeViewEnabled>false</FeatureTreeViewEnabled>
<FeatureTwoPaneViewEnabled>false</FeatureTwoPaneViewEnabled>
</PropertyGroup>
<!-- Import this after inner loop features are declared so that it overrides those properties -->
<Import Project="InnerLoopAreas.props" Condition="Exists('InnerLoopAreas.props') And $(SolutionName) == 'MUXControlsInnerLoop'"/>
<!-- Features to include for official build (should be all features) -->
<PropertyGroup Condition="$(SolutionName) != 'MUXControlsInnerLoop'">
<FeatureAnimatedVisualPlayerEnabled>true</FeatureAnimatedVisualPlayerEnabled>
Expand Down
8 changes: 8 additions & 0 deletions InnerLoopAreas.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See LICENSE in the project root for license information. -->
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Feature to include for inner loop build -->
<PropertyGroup Condition="$(SolutionName) == 'MUXControlsInnerLoop'">
<FeatureTabViewEnabled>true</FeatureTabViewEnabled>
</PropertyGroup>
</Project>

0 comments on commit 421f308

Please sign in to comment.