Update bootstrap for windows and linux script
This commit is contained in:
parent
2c06d8afd7
commit
51d26541ba
8 changed files with 8 additions and 7 deletions
BIN
bootstrap/Bottle.exe
Normal file
BIN
bootstrap/Bottle.exe
Normal file
Binary file not shown.
BIN
bootstrap/SnapWrap.exe
Normal file
BIN
bootstrap/SnapWrap.exe
Normal file
Binary file not shown.
BIN
bootstrap/prebuild.exe
Normal file
BIN
bootstrap/prebuild.exe
Normal file
Binary file not shown.
|
@ -1,4 +1,4 @@
|
|||
@echo off
|
||||
|
||||
call runprebuild.bat
|
||||
dotnet build -c Release
|
||||
dotnet publish --nologo -o bootstrap -c Release --self-contained true /p:PublishSingleFile=true /p:PublishReadyToRun=true /p:PublishTrimmed=true
|
|
@ -5,4 +5,4 @@ chmod +x runprebuild.sh
|
|||
./runprebuild.sh
|
||||
|
||||
# Build Prebuild and SnapWrap
|
||||
dotnet build -c Release
|
||||
dotnet publish --nologo -o bootstrap -c Release --self-contained true /p:PublishSingleFile=true /p:PublishReadyToRun=true /p:PublishTrimmed=true
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Prebuild xmlns="http://dnpb.sourceforge.net/schemas/prebuild-1.10.xsd" version="1.10">
|
||||
|
||||
<Solution name="Prebuild" version="2.0.9" frameworkVersion="net7_0">
|
||||
<Solution name="Prebuild" version="2.0.9" frameworkVersion="net8_0">
|
||||
<Options>
|
||||
<UseDepsFile>true</UseDepsFile>
|
||||
</Options>
|
||||
|
|
|
@ -129,7 +129,8 @@ public enum FrameworkVersion : byte
|
|||
netstandard2_0,
|
||||
net5_0,
|
||||
net6_0,
|
||||
net7_0
|
||||
net7_0,
|
||||
net8_0
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
@ -24,9 +24,9 @@
|
|||
</Configuration>
|
||||
|
||||
|
||||
<PackageReference name="Microsoft.CodeAnalysis" version="4.6.0" />
|
||||
<PackageReference name="Microsoft.CodeAnalysis.CSharp" version="4.6.0" />
|
||||
<PackageReference name="Microsoft.CodeAnalysis.CSharp.Scripting" version="4.6.0" />
|
||||
<PackageReference name="Microsoft.CodeAnalysis" version="4.11.0" />
|
||||
<PackageReference name="Microsoft.CodeAnalysis.CSharp" version="4.11.0" />
|
||||
<PackageReference name="Microsoft.CodeAnalysis.CSharp.Scripting" version="4.11.0" />
|
||||
<Reference name="System.Diagnostics" />
|
||||
<Reference name="System.Diagnostics.Process" />
|
||||
|
||||
|
|
Loading…
Reference in a new issue