forked from CodeBeamOrg/CodeBeam.MudBlazor.Extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeBeam.MudBlazor.Extensions.Docs.Wasm.csproj
More file actions
38 lines (31 loc) · 1.31 KB
/
CodeBeam.MudBlazor.Extensions.Docs.Wasm.csproj
File metadata and controls
38 lines (31 loc) · 1.31 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
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>MudExtensions.Docs.Wasm</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.*" PrivateAssets="all" />
</ItemGroup>
<!--<ItemGroup>
<BlazorWebAssemblyLazyLoad Include="zxing.dll" />
</ItemGroup>-->
<ItemGroup>
<ProjectReference Include="..\CodeBeam.MudBlazor.Extensions\CodeBeam.MudBlazor.Extensions.csproj" />
<ProjectReference Include="..\CodeBeam.MudBlazor.Extensions.Docs\CodeBeam.MudBlazor.Extensions.Docs.csproj" />
</ItemGroup>
<Target Name="CopyXmlDocToWwwRoot" AfterTargets="Build">
<Copy
SourceFiles="..\CodeBeam.MudBlazor.Extensions\bin\$(Configuration)\net9.0\CodeBeam.MudBlazor.Extensions.xml"
DestinationFolder="wwwroot"
SkipUnchangedFiles="true" />
</Target>
<ItemGroup>
<Content Update="wwwroot\favicon.ico">
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>
</Project>