diff options
author | Rob Mensching <rob@firegiant.com> | 2024-04-25 11:10:50 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2024-04-25 13:31:39 -0700 |
commit | a500693e3c9e94304c8b9a8229203b2b750900aa (patch) | |
tree | e99d90f31e2848a695f47423a440fb63bb9e8dae /src/test/burn/TestData/BAFunctionsTests | |
parent | 4983aeeb2da6e96bc8aad698752b3b962f58e585 (diff) | |
download | wix-a500693e3c9e94304c8b9a8229203b2b750900aa.tar.gz wix-a500693e3c9e94304c8b9a8229203b2b750900aa.tar.bz2 wix-a500693e3c9e94304c8b9a8229203b2b750900aa.zip |
Update tests to use TestVersion property instead of generic Version property
The MSBuild Version property is well-known and can be set by standard
processes. That can cause problem in the tests where the version is explicitly
set to validate WiX behaviors. So, we've switched to using the TestVersion
property that will be specific for our testing purposes.
Diffstat (limited to 'src/test/burn/TestData/BAFunctionsTests')
-rw-r--r-- | src/test/burn/TestData/BAFunctionsTests/BundleAv2/BundleAv2.wixproj | 2 | ||||
-rw-r--r-- | src/test/burn/TestData/BAFunctionsTests/PackageAv2/PackageAv2.wixproj | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/test/burn/TestData/BAFunctionsTests/BundleAv2/BundleAv2.wixproj b/src/test/burn/TestData/BAFunctionsTests/BundleAv2/BundleAv2.wixproj index 63d8079e..338306d1 100644 --- a/src/test/burn/TestData/BAFunctionsTests/BundleAv2/BundleAv2.wixproj +++ b/src/test/burn/TestData/BAFunctionsTests/BundleAv2/BundleAv2.wixproj | |||
@@ -2,7 +2,7 @@ | |||
2 | <Project Sdk="WixToolset.Sdk"> | 2 | <Project Sdk="WixToolset.Sdk"> |
3 | <Import Project="..\BundleAv1\BundleA.props" /> | 3 | <Import Project="..\BundleAv1\BundleA.props" /> |
4 | <PropertyGroup> | 4 | <PropertyGroup> |
5 | <Version>2.0.0.0</Version> | 5 | <TestVersion>2.0.0.0</TestVersion> |
6 | </PropertyGroup> | 6 | </PropertyGroup> |
7 | <ItemGroup> | 7 | <ItemGroup> |
8 | <ProjectReference Include="..\PackageAv2\PackageAv2.wixproj" /> | 8 | <ProjectReference Include="..\PackageAv2\PackageAv2.wixproj" /> |
diff --git a/src/test/burn/TestData/BAFunctionsTests/PackageAv2/PackageAv2.wixproj b/src/test/burn/TestData/BAFunctionsTests/PackageAv2/PackageAv2.wixproj index b419f663..d4455f2b 100644 --- a/src/test/burn/TestData/BAFunctionsTests/PackageAv2/PackageAv2.wixproj +++ b/src/test/burn/TestData/BAFunctionsTests/PackageAv2/PackageAv2.wixproj | |||
@@ -2,6 +2,6 @@ | |||
2 | <Project Sdk="WixToolset.Sdk"> | 2 | <Project Sdk="WixToolset.Sdk"> |
3 | <Import Project="..\PackageAv1\PackageA.props" /> | 3 | <Import Project="..\PackageAv1\PackageA.props" /> |
4 | <PropertyGroup> | 4 | <PropertyGroup> |
5 | <Version>2.0.0.0</Version> | 5 | <TestVersion>2.0.0.0</TestVersion> |
6 | </PropertyGroup> | 6 | </PropertyGroup> |
7 | </Project> \ No newline at end of file | 7 | </Project> |