feat: 更新

main
bicijinlian 1 year ago
parent 268a919e48
commit cddd738cb8

@ -0,0 +1,6 @@
namespace BlazorSharedDemo.SharedUI;
public class AppConst
{
public const string UiWebRoot = "_content/BlazorSharedDemo.SharedUI";
}

@ -0,0 +1,4 @@
global using System.Text;
global using System.Collections;
global using System.Linq;
global using System.Linq.Expressions;

@ -1,14 +0,0 @@
@inherits LayoutComponentBase
<HeadContent>
<link rel="stylesheet" href="_content/BlazorSharedDemo.SharedUI/css/SharedUI.css" />
<link rel="apple-touch-icon" sizes="180x180" href="_content/BlazorSharedDemo.SharedUI/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="_content/BlazorSharedDemo.SharedUI/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="_content/BlazorSharedDemo.SharedUI/favicon/favicon-16x16.png">
<link rel="manifest" href="_content/BlazorSharedDemo.SharedUI/favicon/site.webmanifest">
<link rel="shortcut icon" href="_content/BlazorSharedDemo.SharedUI/favicon/favicon.ico">
</HeadContent>
<main>
@Body
</main>

@ -0,0 +1,10 @@
@namespace BlazorSharedDemo.SharedUI
@inherits LayoutComponentBase
<HeadContent>
<link rel="stylesheet" href="@AppConst.UiWebRoot/css/SharedUI.css" />
</HeadContent>
<main>
@Body
</main>
Loading…
Cancel
Save