Skip to content

Commit

Permalink
Merge pull request #27 from ChanyaVRC/dev
Browse files Browse the repository at this point in the history
Release v1.3.3
  • Loading branch information
ChanyaVRC committed Nov 18, 2022
2 parents 3201b69 + 82f3f00 commit 8a39583
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/vrcosclib/Avatar/OscAvatarParametorContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ public OscAvatarParametorContainer(ImmutableArray<OscAvatarParameter> parameters
for (int i = 0; i < parameters.Length; i++)
{
var param = parameters[i];
var outputInterface = param.Output!;
var outputInterface = param.Output;
Debug.Assert(outputInterface != null);
allParams.AddValueChangedEventByAddress(outputInterface.Address, GetValueCallback);
allParams.AddValueChangedEventByAddress(outputInterface!.Address, GetValueCallback);
}
}

Expand Down
4 changes: 2 additions & 2 deletions src/vrcosclib/vrcosclib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<BaseOutputPath>..\..\bin</BaseOutputPath>

<PackageId>VRCOscLib</PackageId>
<Version>1.3.2</Version>
<Version>1.3.3</Version>
<Authors>ChanyaKushima</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageDescription>A OSC library for VRChat</PackageDescription>
Expand All @@ -24,7 +24,7 @@
<PackageReference Include="System.Collections.Immutable" Version="7.0.0" />
</ItemGroup>

<ItemGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'netstandard2.0'))">
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
</ItemGroup>

Expand Down

0 comments on commit 8a39583

Please sign in to comment.