-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
30 lines (26 loc) · 1.14 KB
/
Copy pathDirectory.Build.props
File metadata and controls
30 lines (26 loc) · 1.14 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
<Project>
<PropertyGroup>
<!--
Release version. Maintained by release-please - the annotation comment below is what
it looks for, so do not reformat this line.
-->
<Version>0.2.0</Version> <!-- x-release-please-version -->
<!--
The strong-name identity is deliberately pinned and must NOT track the release version.
RegAsm records the full assembly name in the COM registration, so bumping AssemblyVersion
would invalidate every existing registration on upgrade. FileVersion carries the real
release number for anyone inspecting the DLL's properties.
-->
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>$(Version).0</FileVersion>
<InformationalVersion>$(Version)</InformationalVersion>
</PropertyGroup>
<PropertyGroup>
<Product>TaskbarOrbit</Product>
<Company>TaskbarOrbit</Company>
<Authors>Tama Francisquez</Authors>
<Copyright>Copyright (c) 2026 Tama Francisquez</Copyright>
<Description>GNOME-style virtual desktop indicator for the Windows taskbar.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
</Project>