From 3386ecd01ad95a9c364ae08cf0850ce292cb7801 Mon Sep 17 00:00:00 2001 From: zontreck Date: Tue, 27 Aug 2024 13:11:44 -0700 Subject: [PATCH] Add a new command file to update bootstrap files --- compile.bat | 2 +- compile.sh | 2 +- mkbootstrap.bat | 4 ++++ mkbootstrap.sh | 8 ++++++++ 4 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 mkbootstrap.bat create mode 100644 mkbootstrap.sh diff --git a/compile.bat b/compile.bat index c4f1c7b..4c154bd 100644 --- a/compile.bat +++ b/compile.bat @@ -1,4 +1,4 @@ @echo off call runprebuild.bat -dotnet publish --nologo -o bootstrap -c Release --self-contained true /p:PublishSingleFile=true \ No newline at end of file +dotnet build -c Release \ No newline at end of file diff --git a/compile.sh b/compile.sh index d8e052e..e193f0a 100755 --- a/compile.sh +++ b/compile.sh @@ -5,4 +5,4 @@ chmod +x runprebuild.sh ./runprebuild.sh # Build Prebuild and SnapWrap -dotnet publish --nologo -o bootstrap -c Release --self-contained true /p:PublishSingleFile=true \ No newline at end of file +dotnet build -c Release \ No newline at end of file diff --git a/mkbootstrap.bat b/mkbootstrap.bat new file mode 100644 index 0000000..c4f1c7b --- /dev/null +++ b/mkbootstrap.bat @@ -0,0 +1,4 @@ +@echo off + +call runprebuild.bat +dotnet publish --nologo -o bootstrap -c Release --self-contained true /p:PublishSingleFile=true \ No newline at end of file diff --git a/mkbootstrap.sh b/mkbootstrap.sh new file mode 100644 index 0000000..d8e052e --- /dev/null +++ b/mkbootstrap.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +# Use the prebuild bootstrap to compile prebuild +chmod +x runprebuild.sh +./runprebuild.sh + +# Build Prebuild and SnapWrap +dotnet publish --nologo -o bootstrap -c Release --self-contained true /p:PublishSingleFile=true \ No newline at end of file