Skip to content

Commit 4d1fb42

Browse files
committed
boost(.NET): Move to .NET 6.0
1 parent b33ef84 commit 4d1fb42

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/dotnet.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ env:
1414
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1515
PROJECT_NAME: "SoundSwitch"
1616
ARCH: "win-x64"
17-
FRAMEWORK: "net5.0-windows"
17+
FRAMEWORK: "net6.0-windows"
1818
NODEJS: 16
19-
DOTNET: "5.0.x"
19+
DOTNET: "6.0.x"
2020
CONFIGURATION: "Nightly"
2121

2222
jobs:

Make.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if "%~1" neq "" (
2222

2323

2424
set FILE_DIR=%~dp0
25-
set FRAMEWORK=net5.0-windows
25+
set FRAMEWORK=net6.0-windows
2626
set ARCH=win-x64
2727
set BIN_DIR=%FILE_DIR%SoundSwitch\bin\%buildPlatform%\%FRAMEWORK%\%ARCH%\publish
2828

SoundSwitch.Audio.Manager/SoundSwitch.Audio.Manager.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net5.0-windows</TargetFramework>
3+
<TargetFramework>net6.0-windows</TargetFramework>
44
<OutputType>Library</OutputType>
55
<LangVersion>latest</LangVersion>
66
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>

SoundSwitch.Common/SoundSwitch.Common.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netstandard2.0</TargetFramework>
3+
<TargetFramework>netstandard2.1</TargetFramework>
44
<OutputType>Library</OutputType>
55
<Deterministic>false</Deterministic>
66
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>

SoundSwitch.Tests/SoundSwitch.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net5.0-windows</TargetFramework>
4+
<TargetFramework>net6.0-windows</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77

SoundSwitch.UI.Menu/SoundSwitch.UI.Menu.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<UseWindowsForms>true</UseWindowsForms>
5-
<TargetFramework>net5.0-windows</TargetFramework>
5+
<TargetFramework>net6.0-windows</TargetFramework>
66
<Nullable>enable</Nullable>
77
<Configurations>Debug;Release;Nightly</Configurations>
88
<Platforms>AnyCPU</Platforms>

SoundSwitch/SoundSwitch.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
<PublishReadyToRun>true</PublishReadyToRun>
1212
<Configurations>Debug;Release;Beta;Nightly</Configurations>
1313
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
14-
<TargetFramework>net5.0-windows</TargetFramework>
14+
<TargetFramework>net6.0-windows</TargetFramework>
1515
<Platforms>AnyCPU</Platforms>
1616
</PropertyGroup>
17-
<PropertyGroup>
18-
<RuntimeFrameworkVersion>5.0.9</RuntimeFrameworkVersion>
19-
</PropertyGroup>
17+
<!-- <PropertyGroup>-->
18+
<!-- <RuntimeFrameworkVersion>5.0.9</RuntimeFrameworkVersion>-->
19+
<!-- </PropertyGroup>-->
2020

2121
<PropertyGroup>
2222
<TargetPlatformVersion>8.0</TargetPlatformVersion>

0 commit comments

Comments
 (0)