Skip to content

Commit

Permalink
Update 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mckaragoz committed Nov 27, 2024
1 parent d4a907e commit b9db722
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 34 deletions.
6 changes: 3 additions & 3 deletions BCSS.Test/BCSS.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

Expand All @@ -10,9 +10,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="bunit" Version="1.23.9" />
<PackageReference Include="bunit" Version="1.36.0" />
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="Moq" Version="4.20.69" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.4.2" />
Expand Down
16 changes: 6 additions & 10 deletions BCSS/BCSS.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Version>1.0.0</Version>
<Version>1.0.1</Version>
<Authors>CodeBeam</Authors>
<Copyright>CodeBeam OpenSource MIT</Copyright>
<PackageTags>Blazor; CSS; Style; Generate</PackageTags>
Expand All @@ -31,18 +31,14 @@
<SupportedPlatform Include="browser" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.*" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.0.*" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.*" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net9.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.*" />
</ItemGroup>

<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>BCSS.Test</_Parameter1>
Expand Down
14 changes: 7 additions & 7 deletions BCSSViewer.Docs/BCSSViewer.Docs.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<TargetFrameworks>net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
Expand All @@ -12,16 +12,16 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="MudBlazor" Version="6.11.0" />
<PackageReference Include="CodeBeam.MudBlazor.Extensions" Version="6.6.2" />
<PackageReference Include="MudBlazor" Version="7.15.0" />
<PackageReference Include="CodeBeam.MudBlazor.Extensions" Version="7.1.0" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.0.10" />
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.*" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.0" />
<ItemGroup Condition=" '$(TargetFramework)' == 'net9.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.*" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions BCSSViewer.Docs/Pages/DevTools/BenchmarkPage.razor
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
</MudPaper>

<div class="@Bc["d-flex my-16 gap-12"]">
<MudSwitchM3 @bind-Checked="_bcssRender" Label="Use Bcss" Color="Color.Primary" />
<MudSwitchM3 T="bool" CheckedChanged="ChangePerformanceMode" Label="Performance Mode" Color="Color.Primary" />
<MudSwitchM3 @bind-Value="_bcssRender" Label="Use Bcss" Color="Color.Primary" />
<MudSwitchM3 T="bool" ValueChanged="ChangePerformanceMode" Label="Performance Mode" Color="Color.Primary" />
</div>

<div class="@Bc["d-flex mt-16 gap-12"]">
Expand Down
1 change: 0 additions & 1 deletion BCSSViewer.Docs/Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,6 @@
string _showcaseString = "";
string _iconClass = "";
string _spacingClass = "";
string _insideBorderClass = "";
string _colorClass = "";
string _dimensionClass = "";
string _fontClass = "";
Expand Down
7 changes: 4 additions & 3 deletions BCSSViewer.Docs/Shared/MainLayout.razor
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,15 @@
</MudLayout>

<MudThemeProvider @ref="_mudThemeProvider" Theme="_bcssTheme" @bind-IsDarkMode="_darkMode" />
<MudDialogProvider />
<MudSnackbarProvider />
<MudPopoverProvider/>
<MudDialogProvider/>
<MudSnackbarProvider/>
<BlazorCssProvider />

@code {
MudTheme _bcssTheme = new MudTheme()
{
Palette = new PaletteLight()
PaletteLight = new PaletteLight()
{
Primary = "#313B72",
Secondary = "#F45B69",
Expand Down
1 change: 0 additions & 1 deletion BCSSViewer.Docs/_Imports.razor
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@
@using BCSS
@using MudBlazor
@using MudExtensions
@using MudExtensions.Enums
10 changes: 5 additions & 5 deletions BCSSViewer.Wasm/BCSSViewer.Wasm.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
Expand All @@ -7,10 +7,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CodeBeam.MudBlazor.Extensions" Version="6.6.2" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.0" PrivateAssets="all" />
<PackageReference Include="MudBlazor" Version="6.11.0" />
<PackageReference Include="CodeBeam.MudBlazor.Extensions" Version="7.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.*" PrivateAssets="all" />
<PackageReference Include="MudBlazor" Version="7.15.0" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions BCSSViewer/BCSSViewer.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MudBlazor" Version="6.11.0" />
<PackageReference Include="MudBlazor" Version="7.15.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit b9db722

Please sign in to comment.