diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 81edb2d..bd10a29 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -9,12 +9,12 @@ jobs: DOTNET_NOLOGO: true steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: - dotnet-version: 6.0.x + dotnet-version: 8.0.x - name: Test run: make test @@ -27,7 +27,7 @@ jobs: cd build tar cvf psxpackager-linux-x64{.tar,} - name: Upload linux-x64 Tar - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: psxpackager-linux-x64 path: build/psxpackager-linux-x64.tar @@ -36,7 +36,7 @@ jobs: cd build tar cvf psxpackager-linux-arm{.tar,} - name: Upload linux-arm Tar - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: psxpackager-linux-arm path: build/psxpackager-linux-arm.tar @@ -45,7 +45,7 @@ jobs: cd build tar cvf psxpackager-linux-arm64{.tar,} - name: Upload linux-arm64 Tar - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: psxpackager-linux-arm64 path: build/psxpackager-linux-arm64.tar @@ -54,7 +54,7 @@ jobs: cd build tar cvf psxpackager-osx-x64{.tar,} - name: Upload osx-x64 Tar - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: psxpackager-osx-x64 path: build/psxpackager-osx-x64.tar @@ -63,7 +63,7 @@ jobs: cd build tar cvf psxpackager-osx-arm64{.tar,} - name: Upload osx-arm64 Tar - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: psxpackager-osx-arm64 path: build/psxpackager-osx-arm64.tar diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index 59811dc..ba63677 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -9,10 +9,10 @@ jobs: DOTNET_NOLOGO: true steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Add msbuild to PATH - uses: microsoft/setup-msbuild@v1.1 + uses: microsoft/setup-msbuild@v2 with: msbuild-architecture: x64 @@ -26,12 +26,12 @@ jobs: run: .\build-all.cmd - name: Upload PsxPackagerGUI Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: PsxPackagerGUI path: build\PsxPackagerGUI\** - name: Upload win-x64 Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: psxpackager-win-x64 path: build\psxpackager-win-x64\** diff --git a/PSXPackager.Common/PSXPackager.Common.csproj b/PSXPackager.Common/PSXPackager.Common.csproj index 9e6971c..3b78861 100644 --- a/PSXPackager.Common/PSXPackager.Common.csproj +++ b/PSXPackager.Common/PSXPackager.Common.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 diff --git a/PSXPackager.Tests/PSXPackager.Tests.csproj b/PSXPackager.Tests/PSXPackager.Tests.csproj index da98f1e..741011f 100644 --- a/PSXPackager.Tests/PSXPackager.Tests.csproj +++ b/PSXPackager.Tests/PSXPackager.Tests.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 enable enable diff --git a/PSXPackager/PSXPackager-linux.csproj b/PSXPackager/PSXPackager-linux.csproj index d3c4b84..6f6e654 100644 --- a/PSXPackager/PSXPackager-linux.csproj +++ b/PSXPackager/PSXPackager-linux.csproj @@ -4,7 +4,7 @@ Exe psxpackager - net6.0 + net8.0 linux-x64 false true diff --git a/PSXPackager/PSXPackager-windows.csproj b/PSXPackager/PSXPackager-windows.csproj index f654221..6867cfb 100644 --- a/PSXPackager/PSXPackager-windows.csproj +++ b/PSXPackager/PSXPackager-windows.csproj @@ -4,7 +4,7 @@ Exe psxpackager - net6.0 + net8.0 win-x64 false true diff --git a/PSXPackager/PSXPackager.csproj b/PSXPackager/PSXPackager.csproj index 40a385a..b57842d 100644 --- a/PSXPackager/PSXPackager.csproj +++ b/PSXPackager/PSXPackager.csproj @@ -3,7 +3,7 @@ Exe - net6.0 + net8.0 true diff --git a/PSXPackager/Properties/PublishProfiles/FolderProfile.pubxml b/PSXPackager/Properties/PublishProfiles/FolderProfile.pubxml index 4c6a9c4..a58cd1c 100644 --- a/PSXPackager/Properties/PublishProfiles/FolderProfile.pubxml +++ b/PSXPackager/Properties/PublishProfiles/FolderProfile.pubxml @@ -6,10 +6,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121. Release Any CPU - bin\Release\net6.0\publish\win-x64\ + bin\Release\net8.0\publish\win-x64\ FileSystem <_TargetId>Folder - net6.0 + net8.0 win-x64 false true diff --git a/PSXPackager/Properties/PublishProfiles/FolderProfile1.pubxml b/PSXPackager/Properties/PublishProfiles/FolderProfile1.pubxml index c603f11..9a4078a 100644 --- a/PSXPackager/Properties/PublishProfiles/FolderProfile1.pubxml +++ b/PSXPackager/Properties/PublishProfiles/FolderProfile1.pubxml @@ -6,10 +6,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121. Release Any CPU - bin\Release\net6.0\publish\linux-x64\ + bin\Release\net8.0\publish\linux-x64\ FileSystem <_TargetId>Folder - net6.0 + net8.0 linux-x64 true true diff --git a/PSXPackagerGUI/PSXPackagerGUI.csproj b/PSXPackagerGUI/PSXPackagerGUI.csproj index 5c2ea84..b441b17 100644 --- a/PSXPackagerGUI/PSXPackagerGUI.csproj +++ b/PSXPackagerGUI/PSXPackagerGUI.csproj @@ -3,7 +3,7 @@ WinExe - net6.0-windows + net8.0-windows true Resources\package-64x64.ico win-x64 diff --git a/PSXPackagerGUI/Properties/PublishProfiles/FolderProfile.pubxml b/PSXPackagerGUI/Properties/PublishProfiles/FolderProfile.pubxml index 72bdeb3..35a25ab 100644 --- a/PSXPackagerGUI/Properties/PublishProfiles/FolderProfile.pubxml +++ b/PSXPackagerGUI/Properties/PublishProfiles/FolderProfile.pubxml @@ -6,10 +6,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121. Release Any CPU - bin\Release\net6.0-windows\publish\win-x64\ + bin\Release\net8.0-windows\publish\win-x64\ FileSystem <_TargetId>Folder - net6.0-windows + net8.0-windows win-x64 false true diff --git a/Popstation.Database/Popstation.Database.csproj b/Popstation.Database/Popstation.Database.csproj index cf67268..a0f8062 100644 --- a/Popstation.Database/Popstation.Database.csproj +++ b/Popstation.Database/Popstation.Database.csproj @@ -1,7 +1,7 @@  - net6.0 + net8.0 diff --git a/Popstation/Popstation.csproj b/Popstation/Popstation.csproj index 4989bb0..0c7a6be 100644 --- a/Popstation/Popstation.csproj +++ b/Popstation/Popstation.csproj @@ -1,7 +1,7 @@  - net6.0 + net8.0 diff --git a/common-library.props b/common-library.props index e7edda3..9fd302e 100644 --- a/common-library.props +++ b/common-library.props @@ -3,7 +3,7 @@ - net6.0 + net8.0