Skip to content

Commit 5186a4a

Browse files
committed
Merged PR 1322643: Add custom.props to separate VSTS automated build output for each projects
Add custom.props to separate VSTS automated build output for each projects Add .vs folder to the .gitignore list Related work items: #15405703
2 parents ba2d16f + baf526c commit 5186a4a

File tree

4 files changed

+19
-0
lines changed

4 files changed

+19
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
*.manifest
4040
*.rc
4141
*~
42+
.vs
4243
ipch/
4344
obj/
4445
[Bb]in

ApplicationUnderTests/custom.props

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup Label="VSTSOutputDirectory">
4+
<OutputSubDir>ApplicationUnderTests\$(MSBuildProjectName)</OutputSubDir>
5+
</PropertyGroup>
6+
</Project>

Samples/custom.props

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup Label="VSTSOutputDirectory">
4+
<OutputSubDir>Samples\$(MSBuildProjectName)</OutputSubDir>
5+
</PropertyGroup>
6+
</Project>

Tests/custom.props

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup Label="VSTSOutputDirectory">
4+
<OutputSubDir>Tests\$(MSBuildProjectName)</OutputSubDir>
5+
</PropertyGroup>
6+
</Project>

0 commit comments

Comments
 (0)