Build Unit Test failures after a076b9d7 ("Audit all transitive dependencies and fix latest vulnerabilities", 2024-12-27) #8884
bevanweiss
started this conversation in
WiX Development
Replies: 1 comment 3 replies
-
It looks like reverting the following changes resolves the test breaks (at least for me). src/internal/WixInternal.TestSupport/WixInternal.TestSupport.csproj
index 4e1c3c26..1b713a0d 100644
@@ -4,7 +4,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
- <TargetFrameworks>netstandard2.0;net472</TargetFrameworks>
+ <TargetFrameworks>net6.0;net472</TargetFrameworks>
<IsPackable>true</IsPackable>
<DebugType>embedded</DebugType>
<PublishRepositoryUrl>true</PublishRepositoryUrl> src/wix/WixInternal.Core.TestPackage/WixInternal.Core.TestPackage.csproj
index 9d242b6c..99ffe620 100644
@@ -3,7 +3,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
- <TargetFrameworks>netstandard2.0</TargetFrameworks>
+ <TargetFrameworks>net6.0;net472</TargetFrameworks>
<Description>Internal WiX Toolset Test Package</Description>
<DebugType>embedded</DebugType>
<PublishRepositoryUrl>true</PublishRepositoryUrl> I think if we could get away with it, just having netstandard2.0 as the TargetFrameworks for these libraries should 'be fine'. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
@robmen / @barnson
Is anyone else seeing unit test failures when doing
.\devbuild.cmd
after commit a076b9d7?Beta Was this translation helpful? Give feedback.
All reactions