summaryrefslogtreecommitdiff
path: root/Directory.Build.props
diff options
context:
space:
mode:
Diffstat (limited to 'Directory.Build.props')
-rw-r--r--Directory.Build.props19
1 files changed, 19 insertions, 0 deletions
diff --git a/Directory.Build.props b/Directory.Build.props
new file mode 100644
index 0000000..40fe69a
--- /dev/null
+++ b/Directory.Build.props
@@ -0,0 +1,19 @@
+<Project>
+ <PropertyGroup>
+ <BaseOutputPath
+ >$(MSBuildThisFileDirectory).Temp\$(MSBuildProjectName)\</BaseOutputPath>
+ <OutputPath>$(BaseOutputPath)$(Configuration)\</OutputPath>
+
+ <BaseIntermediateOutputPath
+ >$(MSBuildThisFileDirectory).Temp\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
+ <IntermediateOutputPath
+ >$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath>
+
+ <BaseOutputPath
+ Condition="!HasTrailingSlash('$(BaseOutputPath)')"
+ >$(BaseOutputPath)\</BaseOutputPath>
+ <BaseIntermediateOutputPath
+ Condition="!HasTrailingSlash('$(BaseIntermediateOutputPath)')"
+ >$(BaseIntermediateOutputPath)\</BaseIntermediateOutputPath>
+ </PropertyGroup>
+</Project>