diff options
author | Rob Mensching <rob@firegiant.com> | 2017-09-03 10:47:32 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-09-03 13:33:32 -0700 |
commit | 8e8da6dbc051ec884b5d439bb4f44dc027d05bbf (patch) | |
tree | c657a6dcfe476d6f2ca1c6969810ceda1da76715 /src | |
parent | 725dae07e336ecfe5fe51970d6f31d4a8337b519 (diff) | |
download | wix-8e8da6dbc051ec884b5d439bb4f44dc027d05bbf.tar.gz wix-8e8da6dbc051ec884b5d439bb4f44dc027d05bbf.tar.bz2 wix-8e8da6dbc051ec884b5d439bb4f44dc027d05bbf.zip |
Initialize repo
Diffstat (limited to 'src')
-rw-r--r-- | src/Cpp.Build.props | 9 | ||||
-rw-r--r-- | src/Directory.Build.props | 21 |
2 files changed, 30 insertions, 0 deletions
diff --git a/src/Cpp.Build.props b/src/Cpp.Build.props new file mode 100644 index 00000000..4fa2f590 --- /dev/null +++ b/src/Cpp.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> | ||
5 | <PropertyGroup> | ||
6 | <IntDir>$(BaseIntermediateOutputPath)</IntDir> | ||
7 | <OutDir>$(OutputPath)</OutDir> | ||
8 | </PropertyGroup> | ||
9 | </Project> | ||
diff --git a/src/Directory.Build.props b/src/Directory.Build.props new file mode 100644 index 00000000..48ba462d --- /dev/null +++ b/src/Directory.Build.props | |||
@@ -0,0 +1,21 @@ | |||
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> | ||
5 | <PropertyGroup> | ||
6 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
7 | <BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)..\build\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath> | ||
8 | <OutputPath>$(MSBuildThisFileDirectory)..\build\$(Configuration)\</OutputPath> | ||
9 | |||
10 | <Authors>WiX Toolset Team</Authors> | ||
11 | <Company>WiX Toolset</Company> | ||
12 | <Copyright>Copyright (c) .NET Foundation and contributors. All rights reserved.</Copyright> | ||
13 | </PropertyGroup> | ||
14 | |||
15 | <PropertyGroup> | ||
16 | <WixToolsetRootFolder>$(MSBuildThisFileDirectory)..\..\</WixToolsetRootFolder> | ||
17 | </PropertyGroup> | ||
18 | |||
19 | <Import Project="Cpp.Build.props" Condition=" '$(MSBuildProjectExtension)'=='.vcxproj' " /> | ||
20 | <Import Project="Custom.Build.props" Condition=" Exists('Custom.Build.props') " /> | ||
21 | </Project> | ||