diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-12-31 16:20:11 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-01-01 10:24:08 -0600 |
commit | 5be795c6bcbc03bc37f7cf7c758298ccfaa884ca (patch) | |
tree | f13c40af4a20cfbffaa474e656e145cdda16919e /src/internal/WixBuildTools.TestSupport.Native/build/WixBuildTools.TestSupport.Native.targets | |
parent | 37790ecdc4509d6dd3533933bb9131823f98a0ed (diff) | |
download | wix-5be795c6bcbc03bc37f7cf7c758298ccfaa884ca.tar.gz wix-5be795c6bcbc03bc37f7cf7c758298ccfaa884ca.tar.bz2 wix-5be795c6bcbc03bc37f7cf7c758298ccfaa884ca.zip |
Remove warnings and make sure more don't creep in.
Tests are not run inside of traversal projects so that skipped test warnings don't fail the build.
Diffstat (limited to 'src/internal/WixBuildTools.TestSupport.Native/build/WixBuildTools.TestSupport.Native.targets')
-rw-r--r-- | src/internal/WixBuildTools.TestSupport.Native/build/WixBuildTools.TestSupport.Native.targets | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/internal/WixBuildTools.TestSupport.Native/build/WixBuildTools.TestSupport.Native.targets b/src/internal/WixBuildTools.TestSupport.Native/build/WixBuildTools.TestSupport.Native.targets index 34ea148e..80b159ec 100644 --- a/src/internal/WixBuildTools.TestSupport.Native/build/WixBuildTools.TestSupport.Native.targets +++ b/src/internal/WixBuildTools.TestSupport.Native/build/WixBuildTools.TestSupport.Native.targets | |||
@@ -10,10 +10,10 @@ | |||
10 | <!-- Include these references only when not referenced by the WixBuildTools.TestSupport.Native.vcxproj --> | 10 | <!-- Include these references only when not referenced by the WixBuildTools.TestSupport.Native.vcxproj --> |
11 | <ItemGroup Condition="'$(MSBuildProjectName)'!='$(MSBuildThisFileName)'"> | 11 | <ItemGroup Condition="'$(MSBuildProjectName)'!='$(MSBuildThisFileName)'"> |
12 | <Reference Include="WixBuildTools.TestSupport"> | 12 | <Reference Include="WixBuildTools.TestSupport"> |
13 | <HintPath>$(RootBuildFolder)internal\$(Configuration)\x86\WixBuildTools.TestSupport.dll</HintPath> | 13 | <HintPath>$(RootBuildFolder)internal\$(Configuration)\$(PlatformTarget)\WixBuildTools.TestSupport.dll</HintPath> |
14 | </Reference> | 14 | </Reference> |
15 | <Reference Include="WixBuildTools.TestSupport.Native"> | 15 | <Reference Include="WixBuildTools.TestSupport.Native"> |
16 | <HintPath>$(RootBuildFolder)internal\$(Configuration)\x86\WixBuildTools.TestSupport.Native.dll</HintPath> | 16 | <HintPath>$(RootBuildFolder)internal\$(Configuration)\$(PlatformTarget)\WixBuildTools.TestSupport.Native.dll</HintPath> |
17 | </Reference> | 17 | </Reference> |
18 | </ItemGroup> | 18 | </ItemGroup> |
19 | 19 | ||
@@ -43,7 +43,7 @@ | |||
43 | </Target> | 43 | </Target> |
44 | 44 | ||
45 | <UsingTask AssemblyFile="$(RootPackagesFolder)xunit.runner.msbuild.2.4.1\build\net452\xunit.runner.msbuild.net452.dll" TaskName="Xunit.Runner.MSBuild.xunit" Architecture="x86" /> | 45 | <UsingTask AssemblyFile="$(RootPackagesFolder)xunit.runner.msbuild.2.4.1\build\net452\xunit.runner.msbuild.net452.dll" TaskName="Xunit.Runner.MSBuild.xunit" Architecture="x86" /> |
46 | <Target Name="Test" DependsOnTargets="Build"> | 46 | <Target Name="Test"> |
47 | <xunit Assemblies="$(TargetPath)" /> | 47 | <xunit Assemblies="$(TargetPath)" /> |
48 | </Target> | 48 | </Target> |
49 | </Project> | 49 | </Project> |