Skip to content

Commit 3972752

Browse files
committed
Fix security vulnerability in WixToolset.Sdk and update to .NET 8.0
Changes: - Updated WixToolset.Sdk from 4.0.0 to 6.0.2 (fixes high severity vulnerability GHSA-rf39-3f98-xr7r) - Updated FwInstaller output path from net6.0 to net8.0 This resolves the security warnings in the Error List and aligns the installer project with the .NET 8.0 upgrade.
1 parent 9c02488 commit 3972752

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

FwInstaller/FwInstaller.wixproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="WixToolset.Sdk/4.0.0">
1+
<Project Sdk="WixToolset.Sdk/6.0.2">
22
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
3-
<OutputPath>..\src\bin\Release\net6.0\publish\win-x64</OutputPath>
3+
<OutputPath>..\src\bin\Release\net8.0\publish\win-x64</OutputPath>
44
</PropertyGroup>
55
<ItemGroup>
66
<None Include="config.xml.sample" />

0 commit comments

Comments
 (0)