-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
30 lines (28 loc) · 1.25 KB
/
Directory.Build.props
File metadata and controls
30 lines (28 loc) · 1.25 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<!-- Centralized ShellUI Version - Update this single file to version all components -->
<PropertyGroup>
<ShellUIVersion>0.3.0</ShellUIVersion>
<ShellUIVersionSuffix>alpha.2</ShellUIVersionSuffix>
</PropertyGroup>
<!-- Common properties for all ShellUI projects -->
<PropertyGroup>
<Version>$(ShellUIVersion)</Version>
<Version Condition="'$(ShellUIVersionSuffix)' != ''">$(ShellUIVersion)-$(ShellUIVersionSuffix)</Version>
<AssemblyVersion>$(ShellUIVersion)</AssemblyVersion>
<FileVersion>$(ShellUIVersion)</FileVersion>
<InformationalVersion>$(Version)</InformationalVersion>
</PropertyGroup>
<!-- Common package metadata -->
<PropertyGroup>
<Authors>ShellUI</Authors>
<Company>ShellUI</Company>
<Product>ShellUI</Product>
<Copyright>© $([System.DateTime]::Now.Year) ShellUI. All rights reserved.</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageTags>blazor;ui;components;tailwindcss;shadcn</PackageTags>
<RepositoryUrl>https://github.com/shellui-dev/shellui</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
</Project>