about summary refs log tree commit diff
path: root/MatrixUtils.Web/MatrixUtils.Web.csproj
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2024-01-24 02:31:56 +0100
committerRory& <root@rory.gay>2024-01-24 17:05:25 +0100
commit03313562d21d5db9bf6a14ebbeab80e06c883d3a (patch)
treee000546a2ee8e6a886a7ed9fd01ad674178fb7cb /MatrixUtils.Web/MatrixUtils.Web.csproj
parentMake RMU installable (diff)
downloadMatrixUtils-03313562d21d5db9bf6a14ebbeab80e06c883d3a.tar.xz
MRU->RMU, fixes, cleanup
Diffstat (limited to 'MatrixUtils.Web/MatrixUtils.Web.csproj')
-rw-r--r--MatrixUtils.Web/MatrixUtils.Web.csproj44
1 files changed, 44 insertions, 0 deletions
diff --git a/MatrixUtils.Web/MatrixUtils.Web.csproj b/MatrixUtils.Web/MatrixUtils.Web.csproj
new file mode 100644

index 0000000..d5977a0 --- /dev/null +++ b/MatrixUtils.Web/MatrixUtils.Web.csproj
@@ -0,0 +1,44 @@ +<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly"> + + <PropertyGroup> + <TargetFramework>net8.0</TargetFramework> + <Nullable>enable</Nullable> + <ImplicitUsings>enable</ImplicitUsings> + <LinkIncremental>true</LinkIncremental> + <LangVersion>preview</LangVersion> + <EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles> + + <UseBlazorWebAssembly>true</UseBlazorWebAssembly> + <ServiceWorkerAssetsManifest>service-worker-assets.js</ServiceWorkerAssetsManifest> +<!-- <RunAOTCompilation>true</RunAOTCompilation>--> + </PropertyGroup> + + <ItemGroup> + <PackageReference Include="Blazored.LocalStorage" Version="4.4.0" /> + <PackageReference Include="Blazored.SessionStorage" Version="2.4.0" /> + <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.0" /> + <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.0" PrivateAssets="all" /> + </ItemGroup> + + <ItemGroup> + <ProjectReference Condition="Exists('..\LibMatrix\ArcaneLibs\ArcaneLibs.Blazor.Components\ArcaneLibs.Blazor.Components.csproj')" Include="..\LibMatrix\ArcaneLibs\ArcaneLibs.Blazor.Components\ArcaneLibs.Blazor.Components.csproj" /> + <PackageReference Condition="!Exists('..\LibMatrix\ArcaneLibs\ArcaneLibs.Blazor.Components\ArcaneLibs.Blazor.Components.csproj')" Include="ArcaneLibs.Blazor.Components" Version="*-preview*" /> + <ProjectReference Include="..\LibMatrix\LibMatrix\LibMatrix.csproj" /> + <ProjectReference Include="..\MatrixUtils.Abstractions\MatrixUtils.Abstractions.csproj" /> + <ProjectReference Include="..\MatrixUtils.LibDMSpace\MatrixUtils.LibDMSpace.csproj" /> + </ItemGroup> + + <ItemGroup> + <Content Update="appsettings.Development.json"> + <CopyToOutputDirectory>Always</CopyToOutputDirectory> + </Content> + <Content Update="appsettings.json"> + <CopyToOutputDirectory>Always</CopyToOutputDirectory> + </Content> + </ItemGroup> + + <ItemGroup> + <ServiceWorker Include="wwwroot\service-worker.js" PublishedContent="wwwroot\service-worker.published.js" /> + </ItemGroup> + +</Project>