Skip to content

Commit

Permalink
Merge pull request #33 from AutumnSky1010/prepare/#32
Browse files Browse the repository at this point in the history
#32 🔨 Migrate from .NET 6 to 8
  • Loading branch information
AutumnSky1010 authored Sep 21, 2024
2 parents 056599c + 988ca81 commit c6037ef
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x

# Restore dependencies
- name: Restore dependencies
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
[Wiki](https://github.com/AutumnSky1010/SoundMaker/wiki)

## ⛰️要件
.NET 6 以降
.NET 8 以降

## ⏬インストール方法
### NuGet
Expand Down Expand Up @@ -126,7 +126,7 @@ You can do The following content with this library.
[Wiki](https://github.com/AutumnSky1010/SoundMaker/wiki)

## ⛰️Requirement
.NET 6 or later
.NET 8 or later

## ⏬Installation
### NuGet
Expand Down
2 changes: 1 addition & 1 deletion src/SoundMaker/SoundMaker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
Expand Down
2 changes: 1 addition & 1 deletion src/SoundMakerConsole/SoundMakerConsole.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion test/SoundMakerTests.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

0 comments on commit c6037ef

Please sign in to comment.