-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlazouter.WebAssembly.Sample.csproj
More file actions
39 lines (32 loc) · 1.56 KB
/
Copy pathBlazouter.WebAssembly.Sample.csproj
File metadata and controls
39 lines (32 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<AnalysisLevel>preview</AnalysisLevel>
<ImplicitUsings>enable</ImplicitUsings>
<TargetFramework>net10.0</TargetFramework>
<OverrideHtmlAssetPlaceholders>true</OverrideHtmlAssetPlaceholders>
<ServiceWorkerAssetsManifest>service-worker-assets.js</ServiceWorkerAssetsManifest>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.11" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.10" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<ServiceWorker Include="wwwroot\service-worker.js" PublishedContent="wwwroot\service-worker.published.js" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Blazouter.WebAssembly\Blazouter.WebAssembly.csproj" />
<ProjectReference Include="..\Blazouter.LazyModule.Sample\Blazouter.LazyModule.Sample.csproj" />
</ItemGroup>
<ItemGroup>
<BlazorWebAssemblyLazyLoad Include="Blazouter.LazyModule.Sample.wasm" />
</ItemGroup>
<ItemGroup>
<None Include="bun.lock" Visible="false" />
<None Include="package.json" Visible="false" />
<None Include="Tailwind.txt" Visible="false" />
<None Include="postcss.config.mjs" Visible="false" />
<None Include="tailwind.config.js" Visible="false" />
</ItemGroup>
</Project>