Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nuget/Microsoft.JsInterop 6.0.6 #521

Merged
merged 2 commits into from
Jun 17, 2022
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
3 changes: 1 addition & 2 deletions src/Base/Imp/Blazor/Fusee.Base.Imp.Blazor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@
<ProjectReference Include="$(FuseeEngineRoot)\src\Base\Core\Fusee.Base.Core.csproj">
<PrivateAssets>analyzers</PrivateAssets>
</ProjectReference>

<PackageReference Include="Microsoft.JSInterop" Version="6.0.5" />
<PackageReference Include="Microsoft.JSInterop" Version="6.0.6" />
<PackageReference Include="SixLabors.Fonts" Version="1.0.0-beta17" />
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="1.0.0-beta14" />
</ItemGroup>
Expand Down
12 changes: 6 additions & 6 deletions src/Engine/Imp/Graphics/Blazor/BlazorExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public static class BlazorExtensions
public static IJSRuntime Runtime;

/// <summary>
/// Sets the specifed attribute (key/value pair) of a given javascript object (as <see cref="IJSObjectReference"/>)
/// Sets the specified attribute (key/value pair) of a given javascript object (as <see cref="IJSObjectReference"/>)
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="reference"></param>
Expand All @@ -26,7 +26,7 @@ public static void SetAttribute<T>(this IJSInProcessObjectReference reference, s
}

/// <summary>
/// Sets the specifed object property (key/value pair) of a given javascript object (as <see cref="IJSObjectReference"/>)
/// Sets the specified object property (key/value pair) of a given javascript object (as <see cref="IJSObjectReference"/>)
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="reference"></param>
Expand All @@ -38,7 +38,7 @@ public static void SetObjectProperty<T>(this IJSInProcessObjectReference referen
}

/// <summary>
/// Returns the object propertry of a given javascript obect (given as <see cref="IJSObjectReference"/>)
/// Returns the object property of a given javascript object (given as <see cref="IJSObjectReference"/>)
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="reference"></param>
Expand All @@ -50,7 +50,7 @@ public static T GetObjectProperty<T>(this IJSInProcessObjectReference reference,
}

/// <summary>
/// Sets the specifed object property (key/value pair) of a given javascript object (as <see cref="IJSObjectReference"/>)
/// Sets the specified object property (key/value pair) of a given javascript object (as <see cref="IJSObjectReference"/>)
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="reference"></param>
Expand All @@ -62,7 +62,7 @@ public static void SetObjectProperty<T>(this IJSObjectReference reference, strin
}

/// <summary>
/// Returns the object properties of a given javascript obect (given as <see cref="IJSObjectReference"/>)
/// Returns the object properties of a given javascript object (given as <see cref="IJSObjectReference"/>)
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="reference"></param>
Expand All @@ -74,7 +74,7 @@ public static T GetObjectProperty<T>(this IJSInProcessObjectReference[] referenc
}

/// <summary>
/// Returns the object properties of a given javascript obect (given as <see cref="IJSObjectReference"/>)
/// Returns the object properties of a given javascript object (given as <see cref="IJSObjectReference"/>)
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="reference"></param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<ProjectReference Include="$(FuseeEngineRoot)\src\Engine\Core\Fusee.Engine.Core.csproj">
<PrivateAssets>analyzers</PrivateAssets>
</ProjectReference>
<PackageReference Include="Microsoft.JSInterop" Version="6.0.5" />
<PackageReference Include="Microsoft.JSInterop" Version="6.0.6" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.5" />
</ItemGroup>

Expand Down