forked from Lombiq/Hastlayer-SDK
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSharedAssemblyInfo.cs
30 lines (26 loc) · 1.11 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
// Common file for storing version data. On what this trick is and what to do if you add a new project see:
// https://stackoverflow.com/questions/980753/change-assembly-version-for-multiple-projects/980763#980763
// When creating a new project remove the attributes listed here from its AssemblyInfo.cs file and link this file to
// the project.
using System.Reflection;
[assembly: AssemblyCompany("Lombiq Technologies Ltd.")]
[assembly: AssemblyProduct("Hastlayer (hastlayer.com)")]
[assembly: AssemblyCopyright("Copyright © 2015-2017")]
[assembly: AssemblyTrademark("")]
#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
#else
[assembly: AssemblyConfiguration("Release")]
#endif
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.4.0")]
[assembly: AssemblyFileVersion("1.0.4.0")]