Reduced need for generated file handling.

This commit is contained in:
Unnoen 2022-01-12 17:04:05 +11:00
parent d3ded255bf
commit 3f62690f4c
No known key found for this signature in database
GPG Key ID: 8F8E42252BA20553
3 changed files with 19 additions and 11 deletions

View File

@ -1,7 +1,7 @@
#content {
display: flex;
flex-direction: column;
height: inherit;
//height: inherit;
justify-content: center;
}
//

View File

@ -1,7 +1,7 @@
@inherits LayoutComponentBase
@* This is required because layout components can't access scoped CSS. *@
<link rel="stylesheet" href="MainLayout.Razor.css">
@* <link rel="stylesheet" href="MainLayout.Razor.css"> *@
<div id="background"></div>
<SideBar/>

View File

@ -12,8 +12,15 @@
<SupportedPlatform Include="browser" />
</ItemGroup>
<PropertyGroup>
<LibSassOutputStyle>compressed</LibSassOutputStyle>
<LibSassOutputStyle Condition="'$(Configuration)' == 'Debug'">expanded</LibSassOutputStyle>
<LibSassOutputLevel>verbose</LibSassOutputLevel>
<LibSassMessageLevel>High</LibSassMessageLevel>
</PropertyGroup>
<ItemGroup>
<!-- <PackageReference Include="LibSassBuilder" Version="2.0.1" />-->
<PackageReference Include="LibSassBuilder" Version="2.0.1" />
<PackageReference Include="Fluxor" Version="4.2.2-Alpha" />
<PackageReference Include="Fluxor.Blazor.Web" Version="4.2.2-Alpha" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Wpf" Version="6.0.101-preview.11.2349" />
@ -26,11 +33,12 @@
</ItemGroup>
<ItemGroup>
<Content Remove="Pages\*.scss" />
<Content Include="Pages\*.scss" Watch="false" />
<Content Update="wwwroot\*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<!-- <Content Include="**\*.scss" />-->
<!-- <Content Include="**\*.scss" Watch="false" />-->
<!-- <Content Update="wwwroot\index.html">-->
<!-- <CopyToOutputDirectory>Always</CopyToOutputDirectory>-->
<!-- </Content>-->
<EmbeddedResource Include="wwwroot\index.html" />
</ItemGroup>
<ItemGroup>
@ -41,8 +49,8 @@
<ProjectReference Include="..\Wabbajack.Services.OSIntegrated\Wabbajack.Services.OSIntegrated.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\fonts" />
</ItemGroup>
<!-- <ItemGroup>-->
<!-- <Folder Include="wwwroot" />-->
<!-- </ItemGroup>-->
</Project>