Skip to content

Commit

Permalink
Fix publish step for .NET 8
Browse files Browse the repository at this point in the history
  • Loading branch information
instantsc committed Nov 17, 2023
1 parent 3924f2b commit 580257b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Installer/Installer.wixproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<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/" />
</Target>
<Target Name="BeforeBuild">
<Exec Command="dotnet publish ..\Uninstall\Uninstall.csproj -o ..\publish\exe --self-contained -c $(Configuration) -r win10-x64" />
<Exec Command="dotnet publish ..\SimpleDnsCrypt\SimpleDnsCrypt.csproj -o ..\publish\exe --self-contained -c $(Configuration) -r win10-x64" />
<Exec Command="dotnet publish ..\Uninstall\Uninstall.csproj -o ..\publish\exe --self-contained -c $(Configuration) -r win-x64" />
<Exec Command="dotnet publish ..\SimpleDnsCrypt\SimpleDnsCrypt.csproj -o ..\publish\exe --self-contained -c $(Configuration) -r win-x64" />
</Target>
</Project>

0 comments on commit 580257b

Please sign in to comment.