-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathBlazorExpress.ChartJS.Demo.RCL.csproj
More file actions
42 lines (35 loc) · 1.57 KB
/
BlazorExpress.ChartJS.Demo.RCL.csproj
File metadata and controls
42 lines (35 loc) · 1.57 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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<!-- .NET 8 / Web Assembly -->
<Content Remove="Pages\Docs\GettingStarted\net8\01_A_Manual_Install_04_Snippet.razor" />
<None Include="Pages\Docs\GettingStarted\net8\01_A_Manual_Install_04_Snippet.razor" />
<!-- .NET 8 / Server -->
<Content Remove="Pages\Docs\GettingStarted\net8\02_A_Manual_Install_04_Snippet.razor" />
<None Include="Pages\Docs\GettingStarted\net8\02_A_Manual_Install_04_Snippet.razor" />
</ItemGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BlazorExpress.Bulma" Version="0.1.1" />
<PackageReference Include="BlazorExpress.Bulma.Docx" Version="0.2.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.17" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BlazorExpress.ChartJS\BlazorExpress.ChartJS.csproj" />
</ItemGroup>
<Target Name="EmbedDemos" BeforeTargets="PrepareForBuild">
<!-- Embed demo source code into the assembly to display the source code at runtime. -->
<ItemGroup>
<EmbeddedResource Include="Pages\**\*Demo*.razor" />
<EmbeddedResource Include="Pages\**\*Doc*.razor" />
<EmbeddedResource Include="Pages\**\*Snippet*" />
</ItemGroup>
</Target>
</Project>