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 { #content {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
height: inherit; //height: inherit;
justify-content: center; justify-content: center;
} }
// //

View File

@ -1,7 +1,7 @@
@inherits LayoutComponentBase @inherits LayoutComponentBase
@* This is required because layout components can't access scoped CSS. *@ @* 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> <div id="background"></div>
<SideBar/> <SideBar/>

View File

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