Add defaults file so MSbuild can be run from any subdirectory.

This commit is contained in:
Julio C. Rocha 2017-06-07 14:36:30 -07:00
parent a9683b36fb
commit d68c0b422c
1 changed files with 10 additions and 0 deletions

10
Directory.Build.props Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Platform Condition="'$(Platform)' == ''">Win32</Platform>
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
<SolutionDir Condition="'$(SolutionDir)' == ''">$(MSBuildThisFileDirectory)</SolutionDir>
</PropertyGroup>
</Project>