Skip to content

Commit 5cbb1ee

Browse files
Merge pull request #47 from AvionBlock/dev
v1.6.5 Update (patch)
2 parents f7b1425 + 7885d07 commit 5cbb1ee

3 files changed

Lines changed: 8 additions & 5 deletions

File tree

Directory.Build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project>
22
<PropertyGroup>
3-
<OpusSharpVersion>1.6.4</OpusSharpVersion>
4-
<OpusSharpCoreVersion>1.6.1.0</OpusSharpCoreVersion>
5-
<OpusSharpNativesVersion>1.6.1.0</OpusSharpNativesVersion>
3+
<OpusSharpVersion>1.6.5</OpusSharpVersion>
4+
<OpusSharpCoreVersion>1.6.1.1</OpusSharpCoreVersion>
5+
<OpusSharpNativesVersion>1.6.1.1</OpusSharpNativesVersion>
66
<PackageProjectUrl>https://avionblock.github.io/OpusSharp/index.html</PackageProjectUrl>
77
<RepositoryUrl>https://github.com/AvionBlock/OpusSharp</RepositoryUrl>
88
</PropertyGroup>

OpusSharp.Core/SafeHandlers/OpusDREDDecoderSafeHandle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ protected override bool ReleaseHandle()
3232
/// <summary>
3333
/// Managed wrapper over the OpusDREDDecoder state (statically linked).
3434
/// </summary>
35-
public class StaticOpusDREDDecoderSafeHandle : OpusDecoderSafeHandle
35+
public class StaticOpusDREDDecoderSafeHandle : OpusDREDDecoderSafeHandle
3636
{
3737
/// <inheritdoc/>
3838
protected override bool ReleaseHandle()

OpusSharp.Natives/buildTransitive/OpusSharp.Natives.targets

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
<_OpusSharpIosFramework>$(_OpusSharpNativesRoot)runtimes\ios\native\libopus.xcframework</_OpusSharpIosFramework>
66
</PropertyGroup>
77

8-
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' == 'ios' and Exists('$(_OpusSharpIosFramework)')">
8+
<ItemGroup Condition="(
9+
'$([MSBuild]::GetTargetPlatformIdentifier($(TargetFramework)))' == 'ios'
10+
or '$(TargetFrameworkIdentifier)' == 'ios'
11+
) and Exists('$(_OpusSharpIosFramework)')">
912
<NativeReference Include="$(_OpusSharpIosFramework)">
1013
<Kind>Framework</Kind>
1114
<SmartLink>False</SmartLink>

0 commit comments

Comments
 (0)