Skip to content

Commit 851c933

Browse files
Bart KoelmanBart Koelman
authored andcommitted
Fix: preserve existing features, if any
1 parent 057eae8 commit 851c933

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed
Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2-
<PropertyGroup>
2+
<Choose>
3+
<When Condition="$(Features) == ''">
4+
<PropertyGroup>
35
<Features>IOperation</Features>
4-
</PropertyGroup>
6+
</PropertyGroup>
7+
</When>
8+
<Otherwise>
9+
<PropertyGroup>
10+
<Features>IOperation,$(Features)</Features>
11+
</PropertyGroup>
12+
</Otherwise>
13+
</Choose>
514
</Project>

0 commit comments

Comments
 (0)