Skip to content

Commit

Permalink
upgrade to latest radzen
Browse files Browse the repository at this point in the history
  • Loading branch information
0xor1 committed Oct 13, 2024
1 parent 8a86473 commit 4f9a898
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Common.Cli/Dnsk.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ public Dnsk(ILogger<Dnsk> log)
[Command("dnsk")]
public async Task Run([Argument] string reposPath, [Argument] string pascal, [Argument] string camel)
{
var dnskPath = Path.Join(reposPath, DnskPascal);
var newPath = Path.Join(reposPath, pascal);
var dnskPath = Path.Join(reposPath, DnskCamel);
var newPath = Path.Join(reposPath, camel);
Throw.OpIf(!Directory.Exists(dnskPath), $"{dnskPath} directory doesn't exists.");
Throw.OpIf(Directory.Exists(newPath), $"{newPath} directory already exists.");
Directory.CreateDirectory(newPath);
Expand Down
4 changes: 2 additions & 2 deletions Common.Client/Common.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PackageId>0xor1.Common.Client</PackageId>
<Version>5.0.2</Version>
<Version>5.0.3</Version>
<Authors>Daniel Robinson</Authors>
<Company>Personal</Company>
<Product>Personal</Product>
Expand All @@ -22,7 +22,7 @@
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="8.0.0" />
<PackageReference Include="Radzen.Blazor" Version="4.21.4" />
<PackageReference Include="Radzen.Blazor" Version="5.2.12" />
<PackageReference Include="CSharpier.MsBuild" Version="0.26.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
1 change: 0 additions & 1 deletion Common.Client/wwwroot/dark.css

This file was deleted.

0 comments on commit 4f9a898

Please sign in to comment.