Add a new command file to update bootstrap files
This commit is contained in:
parent
e70b887b07
commit
3386ecd01a
4 changed files with 14 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
call runprebuild.bat
|
call runprebuild.bat
|
||||||
dotnet publish --nologo -o bootstrap -c Release --self-contained true /p:PublishSingleFile=true
|
dotnet build -c Release
|
|
@ -5,4 +5,4 @@ chmod +x runprebuild.sh
|
||||||
./runprebuild.sh
|
./runprebuild.sh
|
||||||
|
|
||||||
# Build Prebuild and SnapWrap
|
# Build Prebuild and SnapWrap
|
||||||
dotnet publish --nologo -o bootstrap -c Release --self-contained true /p:PublishSingleFile=true
|
dotnet build -c Release
|
4
mkbootstrap.bat
Normal file
4
mkbootstrap.bat
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
@echo off
|
||||||
|
|
||||||
|
call runprebuild.bat
|
||||||
|
dotnet publish --nologo -o bootstrap -c Release --self-contained true /p:PublishSingleFile=true
|
8
mkbootstrap.sh
Normal file
8
mkbootstrap.sh
Normal file
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue