-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathBootstrapBlazor.Html2Pdf.csproj
More file actions
36 lines (27 loc) · 1.13 KB
/
BootstrapBlazor.Html2Pdf.csproj
File metadata and controls
36 lines (27 loc) · 1.13 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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<Version>10.0.5</Version>
</PropertyGroup>
<PropertyGroup>
<PackageTags>Bootstrap Blazor WebAssembly wasm UI Components Pdf</PackageTags>
<Description>Bootstrap UI components extensions of Html2Pdf use PuppeteerSharp lib</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BootstrapBlazor" Version="$(BBVersion)" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="PuppeteerSharp" Version="20.2.6" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="PuppeteerSharp" Version="20.2.6" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="PuppeteerSharp" Version="21.1.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="PuppeteerSharp" Version="21.1.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
<PackageReference Include="PuppeteerSharp" Version="21.1.1" />
</ItemGroup>
</Project>