Skip to content

Commit

Permalink
Infrastructure Preparation 53
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiizor committed Jan 18, 2024
1 parent 0df7c5b commit 77c78fd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Taiizor.Starterkit" Version="1.1.4.6" />
<PackageReference Include="Taiizor.Starterkit" Version="1.1.4.7" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/Taiizor.Starterkit/Extension/JavascriptInterop.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace Taiizor.Starterkit.Extension
{
public class JavascriptInterop(IJSRuntime js, string module) : IJavascriptInterop
public class JavascriptInterop(IJSRuntime js = null, string module = null) : IJavascriptInterop
{
private readonly Lazy<Task<IJSObjectReference>> Moduler = new(() => js.InvokeAsync<IJSObjectReference>("import", module).AsTask());

Expand Down
2 changes: 1 addition & 1 deletion src/Taiizor.Starterkit/Taiizor.Starterkit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<PropertyGroup>
<ApplicationIcon>Resources\Taiizor.Starterkit.ico</ApplicationIcon>
<Version>1.1.4.7</Version>
<Version>1.1.4.8</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Title>Taiizor.Starterkit</Title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Taiizor.Starterkit" Version="1.1.4.6" />
<PackageReference Include="Taiizor.Starterkit" Version="1.1.4.7" />
</ItemGroup>

</Project>

0 comments on commit 77c78fd

Please sign in to comment.