Remove .NET 6 from auto-builds (fixes #646)

This commit is contained in:
Matt Nadareski
2024-02-06 12:50:01 -05:00
parent ebf393e634
commit faeaaef02a
4 changed files with 9 additions and 17 deletions

View File

@@ -1,3 +1,7 @@
### WIP (xxxx-xx-xx)
- Remove .NET 6 from auto-builds
### 3.1.0 (2024-02-06)
- Update RedumpLib

View File

@@ -12,18 +12,6 @@ image: Visual Studio 2022
build_script:
- dotnet restore
# .NET 6.0 Debug
- dotnet publish MPF\MPF.csproj -f net6.0-windows -r win-x64 -c Debug --self-contained true --version-suffix %APPVEYOR_REPO_COMMIT% -p:PublishSingleFile=true
- dotnet publish MPF.Check\MPF.Check.csproj -f net6.0 -r win-x64 -c Debug --self-contained true --version-suffix %APPVEYOR_REPO_COMMIT% -p:PublishSingleFile=true
- dotnet publish MPF.Check\MPF.Check.csproj -f net6.0 -r linux-x64 -c Debug --self-contained true --version-suffix %APPVEYOR_REPO_COMMIT% -p:PublishSingleFile=true
- dotnet publish MPF.Check\MPF.Check.csproj -f net6.0 -r osx-x64 -c Debug --self-contained true --version-suffix %APPVEYOR_REPO_COMMIT% -p:PublishSingleFile=true
# .NET 6.0 Release
- dotnet publish MPF\MPF.csproj -f net6.0-windows -r win-x64 -c Release --self-contained true --version-suffix %APPVEYOR_REPO_COMMIT% -p:PublishSingleFile=true -p:DebugType=None -p:DebugSymbols=false
- dotnet publish MPF.Check\MPF.Check.csproj -f net6.0 -r win-x64 -c Release --self-contained true --version-suffix %APPVEYOR_REPO_COMMIT% -p:PublishSingleFile=true -p:DebugType=None -p:DebugSymbols=false
- dotnet publish MPF.Check\MPF.Check.csproj -f net6.0 -r linux-x64 -c Release --self-contained true --version-suffix %APPVEYOR_REPO_COMMIT% -p:PublishSingleFile=true -p:DebugType=None -p:DebugSymbols=false
- dotnet publish MPF.Check\MPF.Check.csproj -f net6.0 -r osx-x64 -c Release --self-contained true --version-suffix %APPVEYOR_REPO_COMMIT% -p:PublishSingleFile=true -p:DebugType=None -p:DebugSymbols=false
# .NET 8.0 Debug
- dotnet publish MPF\MPF.csproj -f net8.0-windows -r win-x64 -c Debug --self-contained true --version-suffix %APPVEYOR_REPO_COMMIT% -p:PublishSingleFile=true
- dotnet publish MPF.Check\MPF.Check.csproj -f net8.0 -r win-x64 -c Debug --self-contained true --version-suffix %APPVEYOR_REPO_COMMIT% -p:PublishSingleFile=true

View File

@@ -12,7 +12,7 @@
# Optional parameters
USE_ALL=false
INCLUDE_PROGRAMS=false # TODO: Figure out how to exclude folders with `zip`
INCLUDE_PROGRAMS=false
NO_BUILD=false
NO_ARCHIVE=false
while getopts "upba" OPTION
@@ -44,9 +44,9 @@ BUILD_FOLDER=$PWD
COMMIT=`git log --pretty=%H -1`
# Create the build matrix arrays
UI_FRAMEWORKS=("net6.0-windows" "net8.0-windows")
UI_FRAMEWORKS=("net8.0-windows")
UI_RUNTIMES=("win-x64")
CHECK_FRAMEWORKS=("net6.0" "net8.0")
CHECK_FRAMEWORKS=("net8.0")
CHECK_RUNTIMES=("win-x64" "linux-x64" "osx-x64")
# Use expanded lists, if requested

View File

@@ -34,9 +34,9 @@ $BUILD_FOLDER = $PSScriptRoot
$COMMIT = git log --pretty=format:"%H" -1
# Create the build matrix arrays
$UI_FRAMEWORKS = @('net6.0-windows', 'net8.0-windows')
$UI_FRAMEWORKS = @('net8.0-windows')
$UI_RUNTIMES = @('win-x64')
$CHECK_FRAMEWORKS = @('net6.0', 'net8.0')
$CHECK_FRAMEWORKS = @('net8.0')
$CHECK_RUNTIMES = @('win-x64', 'linux-x64', 'osx-x64')
# Use expanded lists, if requested