打包laucnher项目生成exe启动器
此过程可使用dotnet publish命令执行
dotnet publish "ShellcodeExecutor.csproj" /p:PublishProfile=FolderProfile
发布 Windows x64 版本
dotnet publish -c Release -r win-x64 --self-contained false
发布为单个可执行文件
dotnet publish -c Release -r win-x64 --self-contained true /p:PublishSingleFile=true