diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2019-12-22 13:51:35 +1100 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2019-12-22 13:34:07 +1000 |
| commit | 4a176b759c47fa1970fcfd0d9e25c294bda82ef4 (patch) | |
| tree | 961cc91c44569d72c12d9f2dc5b1c11a80bb94a9 /src/Custom.Build.props | |
| parent | 43fb611edc680a74d229e8f1eeacb30adad8e3c7 (diff) | |
| download | wix-4a176b759c47fa1970fcfd0d9e25c294bda82ef4.tar.gz wix-4a176b759c47fa1970fcfd0d9e25c294bda82ef4.tar.bz2 wix-4a176b759c47fa1970fcfd0d9e25c294bda82ef4.zip | |
Update the MbaHost test project to use an external exe to load the BA, which allows loading a different .NET than the one running the tests. This also allows writing the tests in C# instead of C++/CLI.
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> | ||
