-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathBlazorWebApp.csproj
More file actions
24 lines (20 loc) · 1.04 KB
/
BlazorWebApp.csproj
File metadata and controls
24 lines (20 loc) · 1.04 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Syncfusion.Blazor.SfPdfViewer" Version="*" />
<PackageReference Include="Syncfusion.Blazor.Themes" Version="*" />
<!-- For PDF creation, parsing, and interactive features -->
<PackageReference Include="Syncfusion.Pdf.Net.Core" Version="*" />
<!-- For Blazor UI components like Grid, Inputs, Buttons, ProgressBar, Notifications, Navigations -->
<PackageReference Include="Syncfusion.Blazor.Grid" Version="*" />
<PackageReference Include="Syncfusion.Blazor.Inputs" Version="*" />
<PackageReference Include="Syncfusion.Blazor.Buttons" Version="*" />
<PackageReference Include="Syncfusion.Blazor.ProgressBar" Version="*" />
<PackageReference Include="Syncfusion.Blazor.Notifications" Version="*" />
<PackageReference Include="Syncfusion.Blazor.Navigations" Version="*" />
</ItemGroup>
</Project>