-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPublicKernBlazor.Components.csproj
More file actions
40 lines (32 loc) · 1.71 KB
/
PublicKernBlazor.Components.csproj
File metadata and controls
40 lines (32 loc) · 1.71 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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<!-- NuGet-Paket-Metadaten -->
<PackageId>PublicKernBlazor.Components</PackageId>
<Authors>KernUx Contributors</Authors>
<Description>KERN-UX Design System als Blazor Component Library – typsichere, barrierefreie Komponenten für die deutsche Verwaltung (WCAG 2.1 AA).</Description>
<PackageTags>blazor;kern-ux;design-system;barrierefreiheit;accessibility;verwaltung</PackageTags>
<PackageLicenseExpression>EUPL-1.2</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://gitlab.opencode.de/kern-ux/kern-ux-plain</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<!-- XML-Dokumentation fuer IntelliSense im konsumierenden Projekt -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- statische Assets (wwwroot/) werden automatisch als _content/PublicKernBlazor.Components/ eingebunden -->
<StaticWebAssetBasePath>_content/PublicKernBlazor.Components</StaticWebAssetBasePath>
</PropertyGroup>
<!-- README.md ins NuGet-Paket aufnehmen -->
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" Condition="Exists('..\..\README.md')" />
</ItemGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AspNetCore.SassCompiler" Version="1.97.1" />
<PackageReference Include="GitVersion.MsBuild" Version="6.6.1" PrivateAssets="All" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="10.0.7" />
</ItemGroup>
</Project>