Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
danielchalmers committed Mar 25, 2024
1 parent da0f49e commit 264f73f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion src/TryMudBlazor.Client/Routes.razor
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Router AppAssembly="@typeof(Program).Assembly"
AdditionalAssemblies="@([typeof(Try.UserComponents.__Main).Assembly])">
AdditionalAssemblies="@(new List<System.Reflection.Assembly> { typeof(Try.UserComponents.__Main).Assembly })">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(EmptyLayout)" />
</Found>
Expand Down
4 changes: 4 additions & 0 deletions src/TryMudBlazor.Client/TryMudBlazor.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
<PackageReference Include="MudBlazor" Version="*" />
</ItemGroup>

<ItemGroup>
<None Include="..\.editorconfig" Link=".editorconfig" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Try.Core\Try.Core.csproj" />
<ProjectReference Include="..\UserComponents\Try.UserComponents.csproj" />
Expand Down
4 changes: 3 additions & 1 deletion src/TryMudBlazor.Server/App.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<!DOCTYPE html>
@using Microsoft.AspNetCore.Components.Web
@using TryMudBlazor.Client
<!DOCTYPE html>
<html class="mud-height-full">
<head prefix="og: http://ogp.me/ns#">
<meta charset="utf-8" />
Expand Down
7 changes: 7 additions & 0 deletions src/TryMudBlazor.Server/Program.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using MudBlazor.Examples.Data;

var builder = WebApplication.CreateBuilder(args);
Expand Down
12 changes: 0 additions & 12 deletions src/TryMudBlazor.Server/_Imports.razor

This file was deleted.

0 comments on commit 264f73f

Please sign in to comment.