Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

*/bin/
*/obj/
*.g.cs
*/.vs/
.vs/
*.dll
Expand Down
2 changes: 1 addition & 1 deletion FFTW.NET/BufferPool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ internal static Container Get(BufferPool<T> bufferPool, int minSize)
if (item.Size >= minSize)
{
bufferPool._buffers.RemoveAt(i--);
if (bufferPool._buffers[i].Buffer.TryGetTarget(out buffer))
if (item.Buffer.TryGetTarget(out buffer))
break;
}
}
Expand Down
11 changes: 5 additions & 6 deletions FFTW.NET/FFTW.NET.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.3</TargetFramework>
<TargetFramework>netstandard2.1</TargetFramework>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Authors>ArgusMagnus</Authors>
Expand All @@ -13,11 +13,10 @@
<RepositoryType>Git</RepositoryType>
<RepositoryUrl>https://github.com/ArgusMagnus/FFTW.NET</RepositoryUrl>
<PackageTags>FFTW FFTW.NET FFT</PackageTags>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<Version>1.0.1</Version>
<PackageReleaseNotes>- Changed to .NETStandard library (1.3)
- Added FftwInterop.Version property which returns the version of the used FFTW libs</PackageReleaseNotes>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<AssemblyVersion>1.0.2.0</AssemblyVersion>
<Version>1.0.2</Version>
<PackageReleaseNotes>Fixed https://github.com/ArgusMagnus/FFTW.NET/issues/6</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<None Update="FftwInterop.tt">
Expand Down
Loading