forked from emreeren/SambaPOS-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSharedAssemblyInfo.cs
42 lines (37 loc) · 2.07 KB
/
SharedAssemblyInfo.cs
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
using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyCompany("Matuka Developers®")]
[assembly: AssemblyProduct("Samba POS Solution ™")]
[assembly: AssemblyCopyright("Copyright © 2017-2022, Matuka Developers® and/or its affiliates. All rights reserved.")]
[assembly: AssemblyTrademark("Samba POS Solution ™")]
[assembly: AssemblyDescription("Samba POS Solution ™ on your desktop; at home, at work or on the go.")] // a.k.a. "Comments"
//// Make it easy to distinguish Debug and Release (i.e. Retail) builds;
//// for example, through the file properties window.
//#if DEBUG
//[assembly: AssemblyConfiguration("Debug")]
//#else
//[assembly: AssemblyConfiguration("Retail")]
//#endif
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// Note that the assembly version does not get incremented for every build
// to avoid problems with assembly binding (or requiring a policy or
// <bindingRedirect> in the config file).
//
// The AssemblyFileVersionAttribute is incremented with every build in order
// to distinguish one build from another. AssemblyFileVersion is specified
// in AssemblyVersionInfo.cs so that it can be easily incremented by the
// automated build process.
[assembly: AssemblyVersion("1.0.0.14")]
[assembly: AssemblyFileVersion("1.0.0.14")]
// By default, the "Product version" shown in the file properties window is
// the same as the value specified for AssemblyFileVersionAttribute.
// Set AssemblyInformationalVersionAttribute to be the same as
// AssemblyVersionAttribute so that the "Product version" in the file
// properties window matches the version displayed in the GAC shell extension.
[assembly: AssemblyInformationalVersion("1.0.0.14")] // a.k.a. "Product version"