Skip to content
Merged
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
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project>
<PropertyGroup>
<OpusSharpVersion>1.6.4</OpusSharpVersion>
<OpusSharpCoreVersion>1.6.1.0</OpusSharpCoreVersion>
<OpusSharpNativesVersion>1.6.1.0</OpusSharpNativesVersion>
<OpusSharpVersion>1.6.5</OpusSharpVersion>
<OpusSharpCoreVersion>1.6.1.1</OpusSharpCoreVersion>
<OpusSharpNativesVersion>1.6.1.1</OpusSharpNativesVersion>
<PackageProjectUrl>https://avionblock.github.io/OpusSharp/index.html</PackageProjectUrl>
<RepositoryUrl>https://github.com/AvionBlock/OpusSharp</RepositoryUrl>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion OpusSharp.Core/SafeHandlers/OpusDREDDecoderSafeHandle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ protected override bool ReleaseHandle()
/// <summary>
/// Managed wrapper over the OpusDREDDecoder state (statically linked).
/// </summary>
public class StaticOpusDREDDecoderSafeHandle : OpusDecoderSafeHandle
public class StaticOpusDREDDecoderSafeHandle : OpusDREDDecoderSafeHandle
{
/// <inheritdoc/>
protected override bool ReleaseHandle()
Expand Down
5 changes: 4 additions & 1 deletion OpusSharp.Natives/buildTransitive/OpusSharp.Natives.targets
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
<_OpusSharpIosFramework>$(_OpusSharpNativesRoot)runtimes\ios\native\libopus.xcframework</_OpusSharpIosFramework>
</PropertyGroup>

<ItemGroup Condition="'$(TargetFrameworkIdentifier)' == 'ios' and Exists('$(_OpusSharpIosFramework)')">
<ItemGroup Condition="(
'$([MSBuild]::GetTargetPlatformIdentifier($(TargetFramework)))' == 'ios'
or '$(TargetFrameworkIdentifier)' == 'ios'
) and Exists('$(_OpusSharpIosFramework)')">
<NativeReference Include="$(_OpusSharpIosFramework)">
<Kind>Framework</Kind>
<SmartLink>False</SmartLink>
Expand Down
Loading