Skip to content

Commit f7784d0

Browse files
committed
Bump .NET version from .NET 6 to .NET 8.
1 parent 29e52c2 commit f7784d0

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

MPDCtrl-Desktop/MPDCtrl/MPDCtrl.csproj

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
<PropertyGroup>
44
<OutputType>WinExe</OutputType>
5-
<TargetFramework>net6.0-windows10.0.22621.0</TargetFramework>
5+
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework>
66
<UseWPF>true</UseWPF>
77
<ApplicationIcon>MPDCtrl2.ico</ApplicationIcon>
8-
<Version>3.0.23.0</Version>
8+
<Version>3.1.0.0</Version>
99
<Authors>torum</Authors>
1010
<Company>Torum</Company>
1111
<Copyright></Copyright>
@@ -25,39 +25,48 @@
2525

2626
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
2727
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
28+
<DebugType>embedded</DebugType>
2829
</PropertyGroup>
2930

3031
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
3132
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
33+
<DebugType>embedded</DebugType>
3234
</PropertyGroup>
3335

3436
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
3537
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
38+
<DebugType>embedded</DebugType>
3639
</PropertyGroup>
3740

3841
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
3942
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
43+
<DebugType>embedded</DebugType>
4044
</PropertyGroup>
4145

4246
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
4347
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
48+
<DebugType>embedded</DebugType>
4449
</PropertyGroup>
4550

4651
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
4752
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
53+
<DebugType>embedded</DebugType>
4854
</PropertyGroup>
4955

5056
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
5157
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
58+
<DebugType>embedded</DebugType>
5259
</PropertyGroup>
5360

5461
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
5562
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
63+
<DebugType>embedded</DebugType>
5664
</PropertyGroup>
5765

5866
<ItemGroup>
59-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
60-
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
67+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
68+
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
69+
<PackageReference Include="System.Text.Json" Version="8.0.4" />
6170
</ItemGroup>
6271

6372
<ItemGroup>

MPDCtrl-Desktop/MPDCtrl/ViewModels/MainViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class MainViewModel : ViewModelBase
3131
const string _appName = "MPDCtrl";
3232

3333
// Application version
34-
const string _appVer = "v3.0.21.0";
34+
const string _appVer = "v3.1.0.0";
3535

3636
public static string AppVer
3737
{

0 commit comments

Comments
 (0)