Skip to content

Commit ee5800d

Browse files
committed
Update to .NET 10
1 parent ef885e7 commit ee5800d

6 files changed

Lines changed: 13 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup .NET
2020
uses: actions/setup-dotnet@v4
2121
with:
22-
dotnet-version: 8.0.x
22+
dotnet-version: 10.0.x
2323

2424
- name: Restore dependencies
2525
run: dotnet restore

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ jobs:
1616
with:
1717
fetch-depth: 0
1818

19+
- name: Setup .NET
20+
uses: actions/setup-dotnet@v4
21+
with:
22+
dotnet-version: 10.0.x
23+
1924
- name: Install GitVersion
2025
uses: gittools/actions/gitversion/setup@v3.1.11
2126
with:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ that would work on all platforms. Each platform has its own way of handling audi
1212
I've tested it on MacOS, Windows and Linux. But I can't guarantee that it will work on all systems.
1313

1414
## Features
15-
- written in C# and .NET 8
15+
- using C# 14 and .NET 10
1616
- no external dependencies other than native OS frameworks
1717
- cross-platform, currently supports macOS, Windows and Linux
1818
- supports 8-bit unsigned, 16-bit signed and 32-bit float PCM data formats

src/Beep/Beep.csproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<AssemblyName>OldBit.Beep</AssemblyName>
88
<RootNamespace>OldBit.Beep</RootNamespace>
99
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
10-
<Version>0.9.4</Version>
10+
<Version>1.0.1</Version>
1111
<Title>OldBit.Beep</Title>
1212
<Authors>Wojciech Sobieszek</Authors>
1313
<RepositoryUrl>https://github.com/oldbit-com/Beep</RepositoryUrl>
@@ -18,6 +18,8 @@
1818
<PackageReadmeFile>README.md</PackageReadmeFile>
1919
<GenerateDocumentationFile>True</GenerateDocumentationFile>
2020
<PackageLicenseExpression>MIT</PackageLicenseExpression>
21+
<IncludeSymbols>true</IncludeSymbols>
22+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2123
<PackageTags>audio,audio player,cross-platform, audio toolbox, alsa, wasapi</PackageTags>
2224
</PropertyGroup>
2325

src/Demo/Demo.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>

tests/Beep.Tests/Beep.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

0 commit comments

Comments
 (0)