Skip to content

Commit

Permalink
Merge pull request #60 from takano32/net8.0
Browse files Browse the repository at this point in the history
Upgrade from `net6.0` to `net8.0`
  • Loading branch information
RupertAvery authored Mar 6, 2024
2 parents 8167a50 + 408ef52 commit 32e7b0a
Show file tree
Hide file tree
Showing 14 changed files with 27 additions and 27 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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\**
Expand Down
2 changes: 1 addition & 1 deletion PSXPackager.Common/PSXPackager.Common.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion PSXPackager.Tests/PSXPackager.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

Expand Down
2 changes: 1 addition & 1 deletion PSXPackager/PSXPackager-linux.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<AssemblyName>psxpackager</AssemblyName>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<SelfContained>false</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
Expand Down
2 changes: 1 addition & 1 deletion PSXPackager/PSXPackager-windows.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<AssemblyName>psxpackager</AssemblyName>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained>false</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
Expand Down
2 changes: 1 addition & 1 deletion PSXPackager/PSXPackager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net6.0</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>

Expand Down
4 changes: 2 additions & 2 deletions PSXPackager/Properties/PublishProfiles/FolderProfile.pubxml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<PublishDir>bin\Release\net6.0\publish\win-x64\</PublishDir>
<PublishDir>bin\Release\net8.0\publish\win-x64\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<_TargetId>Folder</_TargetId>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained>false</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
Expand Down
4 changes: 2 additions & 2 deletions PSXPackager/Properties/PublishProfiles/FolderProfile1.pubxml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<PublishDir>bin\Release\net6.0\publish\linux-x64\</PublishDir>
<PublishDir>bin\Release\net8.0\publish\linux-x64\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<_TargetId>Folder</_TargetId>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
Expand Down
2 changes: 1 addition & 1 deletion PSXPackagerGUI/PSXPackagerGUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<ApplicationIcon>Resources\package-64x64.ico</ApplicationIcon>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<PublishDir>bin\Release\net6.0-windows\publish\win-x64\</PublishDir>
<PublishDir>bin\Release\net8.0-windows\publish\win-x64\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<_TargetId>Folder</_TargetId>
<TargetFramework>net6.0-windows</TargetFramework>
<TargetFramework>net8.0-windows</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained>false</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
Expand Down
2 changes: 1 addition & 1 deletion Popstation.Database/Popstation.Database.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Popstation/Popstation.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
2 changes: 1 addition & 1 deletion common-library.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<!-- Package related stuff -->
<PropertyGroup>
<TargetFrameworks>net6.0</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
</PropertyGroup>

<!-- Assembly stuff -->
Expand Down

0 comments on commit 32e7b0a

Please sign in to comment.