Skip to content

Commit baf526c

Browse files
committed
Add custom.props to separate VSTS automated build output for each projects
Add .vs folder to the .gitignore list
1 parent ba2d16f commit baf526c

File tree

4 files changed

+19
-0
lines changed

4 files changed

+19
-0
lines changed

.gitignore

+1
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

+6
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

+6
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

+6
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)