diff options
Diffstat (limited to 'src/Custom.Build.props')
-rw-r--r-- | src/Custom.Build.props | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Custom.Build.props b/src/Custom.Build.props new file mode 100644 index 00000000..f4352014 --- /dev/null +++ b/src/Custom.Build.props | |||
@@ -0,0 +1,9 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
3 | |||
4 | <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
5 | <PropertyGroup> | ||
6 | <OutputPath Condition="$(ProjectName.StartsWith('Example.')) And '$(MSBuildProjectExtension)'=='.csproj' ">$(OutputPath)examples\$(ProjectName)\</OutputPath> | ||
7 | <OutDir Condition="$(ProjectName.StartsWith('Example.')) And '$(MSBuildProjectExtension)'=='.vcxproj' ">$(OutDir)examples\$(ProjectName)\</OutDir> | ||
8 | </PropertyGroup> | ||
9 | </Project> | ||