Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
Updated version to 6.0.0-preview-0333
  • Loading branch information
richieedwards committed Aug 11, 2024
1 parent fca475a commit dde2a7c
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

<PropertyGroup>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<TypeScriptToolsVersion>4.7</TypeScriptToolsVersion>
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -21,9 +19,25 @@
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.7" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.10.48">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="PolySharp" Version="1.14.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\Core\src\Umbrella.AppFramework\Umbrella.AppFramework.csproj" />
<ProjectReference Include="..\..\..\Core\src\Umbrella.Utilities\Umbrella.Utilities.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\..\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
// Copyright (c) Zinofi Digital Ltd. All Rights Reserved.
// Licensed under the MIT License.

using Blazored.LocalStorage;
using Blazored.Modal;
using Blazored.SessionStorage;
using CommunityToolkit.Diagnostics;
using Umbrella.AppFramework.Services.Abstractions;
using Umbrella.AspNetCore.Blazor.Components.Dialog;
Expand Down Expand Up @@ -41,6 +44,11 @@ public static IServiceCollection AddUmbrellaBlazor(

_ = services.ConfigureUmbrellaOptions(umbrellaGridOptionsBuilder);

// Add the Blazored Services here too to avoid the user having to add them manually
_ = services.AddBlazoredModal();
_ = services.AddBlazoredLocalStorage();
_ = services.AddBlazoredSessionStorage();

return services;
}
}
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>6.0.0-preview-0332</Version>
<Version>6.0.0-preview-0333</Version>

<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
Expand Down

0 comments on commit dde2a7c

Please sign in to comment.