forked from devbridge/StandardWebProjectTemplate
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAssemblyVersion.cs
More file actions
18 lines (16 loc) · 757 Bytes
/
AssemblyVersion.cs
File metadata and controls
18 lines (16 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System.Reflection;
[assembly: AssemblyCompany("DevBridge Inc.")]
[assembly: AssemblyProduct("Standard Web Project Template")]
[assembly: AssemblyCopyright("DevBridge 2012")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Version information for an assembly consists of the following four values:
//
// Major Version - year of build (for example, if development started in 2012 year then 0 will mean 2012, 1 - 2013, 2 - 2014 and so on)
// Minor Version - month of build
// Build Number - day of build
// Revision - time of build (hours and minutes parts)
//
[assembly: AssemblyVersion("0.6.29.1444")]
[assembly: AssemblyFileVersion("0.6.29.1444")]
[assembly: AssemblyInformationalVersion("0.6.29.1444")]