-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathCodeBeam.MudBlazor.Extensions.Qr.csproj
More file actions
59 lines (50 loc) · 2.04 KB
/
CodeBeam.MudBlazor.Extensions.Qr.csproj
File metadata and controls
59 lines (50 loc) · 2.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Version>1.0.0</Version>
<Title>CodeBeam.MudBlazor.Extensions.Qr</Title>
<Authors>CodeBeam</Authors>
<Company>CodeBeam</Company>
<Description>
QR (Barcode) Component for MudBlazor and CodeBeam.MudBlazor.Extensions
Requires CodeBeam.MudBlazor.Extensions.
https://www.nuget.org/packages/CodeBeam.MudBlazor.Extensions
</Description>
<Copyright>CodeBeam OpenSource MIT</Copyright>
<PackageIcon>Mud_Secondary.png</PackageIcon>
<PackageProjectUrl>https://mudextensions.codebeam.org/</PackageProjectUrl>
<RepositoryUrl>https://github.com/CodeBeamOrg/CodeBeam.MudBlazor.Extensions</RepositoryUrl>
<PackageTags>Blazor; MudBlazor; Component; Extension; Barcode; QR;</PackageTags>
<RootNamespace>MudExtensions</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<IsTrimmable>true</IsTrimmable>
<TrimMode>link</TrimMode>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CodeBeam.MudBlazor.Extensions" Version="8.3.0" />
<PackageReference Include="ZXing.Net" Version="0.16.11" />
</ItemGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components" Version="8.0.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.*" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net9.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components" Version="9.0.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.*" />
</ItemGroup>
<ItemGroup>
<None Include="Mud_Secondary.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>