Skip to content

Commit 75a1e1d

Browse files
committed
Merge branch 'develop'
* develop: Upgrading to .NET 10
2 parents 6791139 + 020adf0 commit 75a1e1d

6 files changed

Lines changed: 15 additions & 13 deletions

File tree

.github/workflows/create-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
build:
99
runs-on: ubuntu-latest
10-
container: mcr.microsoft.com/dotnet/sdk:9.0
10+
container: mcr.microsoft.com/dotnet/sdk:10.0
1111

1212
steps:
1313
- uses: actions/checkout@v3
@@ -46,7 +46,7 @@ jobs:
4646
publish-nuget:
4747
needs: build
4848
runs-on: ubuntu-latest
49-
container: mcr.microsoft.com/dotnet/sdk:9.0
49+
container: mcr.microsoft.com/dotnet/sdk:10.0
5050
steps:
5151
- uses: actions/checkout@master
5252
- name: Publish to NuGet

.github/workflows/dotnetcore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
12-
container: mcr.microsoft.com/dotnet/sdk:9.0
12+
container: mcr.microsoft.com/dotnet/sdk:10.0
1313

1414
steps:
1515
- uses: actions/checkout@v3

src/SoundFingerprinting.Tests/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
[assembly: AssemblyCulture("")]
1212
[assembly: ComVisible(false)]
1313
[assembly: Guid("4cac962e-ebc5-4006-a1e0-7ffb3e2483c2")]
14-
[assembly: AssemblyVersion("12.8.0.100")]
15-
[assembly: AssemblyInformationalVersion("12.8.0.100")]
14+
[assembly: AssemblyVersion("13.0.0.100")]
15+
[assembly: AssemblyInformationalVersion("13.0.0.100")]

src/SoundFingerprinting.Tests/SoundFingerprinting.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net9.0</TargetFramework>
3+
<TargetFramework>net10.0</TargetFramework>
44
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
55
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
66
<LangVersion>latest</LangVersion>
@@ -9,7 +9,7 @@
99
<PackageReference Include="Moq" Version="4.20.72" />
1010
<PackageReference Include="NLog.Extensions.Logging" Version="5.5.0" />
1111
<PackageReference Include="NUnit" Version="3.14.0" />
12-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
1313
<PackageReference Include="NUnit3TestAdapter" Version="5.2.0" />
1414
</ItemGroup>
1515
<ItemGroup>

src/SoundFingerprinting/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
[assembly: InternalsVisibleTo("SoundFingerprinting.FFT.FFTW")]
2020
[assembly: InternalsVisibleTo("SoundFingerprinting.FFT.FFTW.Tests")]
2121

22-
[assembly: AssemblyVersion("12.8.0.100")]
23-
[assembly: AssemblyInformationalVersion("12.8.0.100")]
22+
[assembly: AssemblyVersion("13.0.0.100")]
23+
[assembly: AssemblyInformationalVersion("13.0.0.100")]

src/SoundFingerprinting/SoundFingerprinting.csproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@
44
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
55
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
66
<Nullable>enable</Nullable>
7-
<PackageVersion>12.8.0</PackageVersion>
7+
<PackageVersion>13.0.0</PackageVersion>
88
<Authors>Sergiu Ciumac</Authors>
99
<PackageDescription>SoundFingerprinting is a C# framework that implements an efficient algorithm of audio fingerprinting and identification. Designed for developers, enthusiasts, researchers in the fields of audio processing, data mining, digital signal processing.</PackageDescription>
1010
<PackageProjectUrl>https://github.com/addictedcs/soundfingerprinting</PackageProjectUrl>
1111
<RepositoryUrl>https://github.com/AddictedCS/soundfingerprinting</RepositoryUrl>
1212
<RepositoryType>git</RepositoryType>
1313
<PackageReleaseNotes>
14+
Version 13.0.0
15+
- Upgrading .NET dependencies to .NET 10
1416
Version 12.8.0
1517
- Adding TruePositives filter with optional parameters.
1618
Version 12.6.0
@@ -76,9 +78,9 @@
7678
<AdditionalFiles Include="../stylecop.json" />
7779
</ItemGroup>
7880
<ItemGroup>
79-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0" />
80-
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.0" />
81-
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0">
81+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0" />
82+
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="10.0.0" />
83+
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.100">
8284
<PrivateAssets>all</PrivateAssets>
8385
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
8486
</PackageReference>

0 commit comments

Comments
 (0)