Skip to content

Commit 580257b

Browse files
committed
Fix publish step for .NET 8
1 parent 3924f2b commit 580257b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Installer/Installer.wixproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" />
4747
</Target>
4848
<Target Name="BeforeBuild">
49-
<Exec Command="dotnet publish ..\Uninstall\Uninstall.csproj -o ..\publish\exe --self-contained -c $(Configuration) -r win10-x64" />
50-
<Exec Command="dotnet publish ..\SimpleDnsCrypt\SimpleDnsCrypt.csproj -o ..\publish\exe --self-contained -c $(Configuration) -r win10-x64" />
49+
<Exec Command="dotnet publish ..\Uninstall\Uninstall.csproj -o ..\publish\exe --self-contained -c $(Configuration) -r win-x64" />
50+
<Exec Command="dotnet publish ..\SimpleDnsCrypt\SimpleDnsCrypt.csproj -o ..\publish\exe --self-contained -c $(Configuration) -r win-x64" />
5151
</Target>
5252
</Project>

0 commit comments

Comments
 (0)