-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathCodeBeam.MudBlazor.Extensions.Docs.Wasm.csproj
More file actions
44 lines (35 loc) · 1.45 KB
/
CodeBeam.MudBlazor.Extensions.Docs.Wasm.csproj
File metadata and controls
44 lines (35 loc) · 1.45 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
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>MudExtensions.Docs.Wasm</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.*" PrivateAssets="all" />
</ItemGroup>
<!--<ItemGroup>
<BlazorWebAssemblyLazyLoad Include="zxing.dll" />
</ItemGroup>-->
<ItemGroup>
<ProjectReference Include="..\..\src\CodeBeam.MudBlazor.Extensions\CodeBeam.MudBlazor.Extensions.csproj" />
<ProjectReference Include="..\..\docs\CodeBeam.MudBlazor.Extensions.Docs\CodeBeam.MudBlazor.Extensions.Docs.csproj" />
</ItemGroup>
<Target Name="CopyXmlDocToWwwRoot" AfterTargets="Build">
<ItemGroup>
<_XmlDoc Include="..\..\src\CodeBeam.MudBlazor.Extensions\bin\$(Configuration)\$(TargetFramework)\CodeBeam.MudBlazor.Extensions.xml" />
</ItemGroup>
<Copy
SourceFiles="@(_XmlDoc)"
DestinationFolder="wwwroot"
SkipUnchangedFiles="true"
Condition="Exists('%(Identity)')" />
</Target>
<ItemGroup>
<Content Update="wwwroot\favicon.ico">
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>
</Project>