Projekt kijavítása induláshoz

This commit is contained in:
Adam 2024-01-22 09:25:42 +01:00
parent 96fc42ab5d
commit 8a350520c3
11 changed files with 21 additions and 41 deletions

View File

@ -68,4 +68,8 @@
<ProjectReference Include="..\MissNationSharedUI\MissNationSharedUI.csproj" /> <ProjectReference Include="..\MissNationSharedUI\MissNationSharedUI.csproj" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\css\" />
</ItemGroup>
</Project> </Project>

View File

@ -5,9 +5,9 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
<title>MissNationBlazorHybrid</title> <title>MissNationBlazorHybrid</title>
<base href="/" /> <base href="/" />
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" /> <link rel="stylesheet" href="_content/MissNationSharedUI/css/bootstrap/bootstrap.min.css" />
<link rel="stylesheet" href="css/app.css" />
<link rel="stylesheet" href="MissNationBlazorHybrid.styles.css" /> <link rel="stylesheet" href="MissNationBlazorHybrid.styles.css" />
<link rel="stylesheet" href="css/app.css" />
<link rel="icon" type="image/png" href="favicon.png" /> <link rel="icon" type="image/png" href="favicon.png" />
</head> </head>

View File

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly"> <Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net8.0</TargetFramework> <TargetFramework>net8.0</TargetFramework>
@ -7,9 +7,9 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.13" /> <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.13" PrivateAssets="all" /> <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.1" PrivateAssets="all" />
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" /> <PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
@ -17,4 +17,8 @@
<ProjectReference Include="..\Shared\MissNationBlazorWASM.Shared.csproj" /> <ProjectReference Include="..\Shared\MissNationBlazorWASM.Shared.csproj" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\css\" />
</ItemGroup>
</Project> </Project>

File diff suppressed because one or more lines are too long

View File

@ -6,7 +6,9 @@
<title>MissNationBlazorWASM</title> <title>MissNationBlazorWASM</title>
<base href="/" /> <base href="/" />
<link href="_content/MissNationSharedUI/css/app.css" rel="stylesheet" /> <link href="_content/MissNationSharedUI/css/app.css" rel="stylesheet" />
<link href="_content/MissNationSharedUI/css/bootstrap/bootstrap.min.css" rel="stylesheet" />
<link href="MissNationBlazorWasm.Client.styles.css" rel="stylesheet" />
<!-- If you add any scoped CSS files, uncomment the following to load them <!-- If you add any scoped CSS files, uncomment the following to load them
<link href="MissNationBlazorWASM.Client.styles.css" rel="stylesheet" /> --> <link href="MissNationBlazorWASM.Client.styles.css" rel="stylesheet" /> -->
</head> </head>

View File

@ -7,7 +7,7 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="7.0.13" /> <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="8.0.1" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View File

@ -1,4 +1,5 @@
<div class="top-row ps-3 navbar navbar-dark"> 
<div class="top-row ps-3 navbar navbar-dark">
<div class="container-fluid"> <div class="container-fluid">
<a class="navbar-brand" href="">MissNationBlazorHybrid</a> <a class="navbar-brand" href="">MissNationBlazorHybrid</a>
</div> </div>

View File

@ -1 +1,2 @@
@using Microsoft.AspNetCore.Components.Web @using Microsoft.AspNetCore.Components.Web
@using Microsoft.AspNetCore.Components.Routing