forked from abb-iss/SrcML.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolutionInfo.cs
39 lines (34 loc) · 1.36 KB
/
SolutionInfo.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
/******************************************************************************
* Copyright (c) 2013 ABB Group
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Vinay Augustine (ABB Group) - initial API, implementation, & documentation
*****************************************************************************/
using System.Reflection;
using System.Resources;
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Revision
// Build Number
[assembly: AssemblyCompany("ABB")]
[assembly: NeutralResourcesLanguage("en-US")]
[assembly: AssemblyVersion("99.99.0.0")]
/*****************************************************************************
* This file is generated by MSBuild.
*
* DO NOT EDIT IT BY HAND and DO NOT CHECK IN CHANGES TO IT
*
*****************************************************************************/
#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyInformationalVersion("99.99.0.0-Debug-dev")]
#else
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyInformationalVersion("99.99.0.0-Release-dev")]
#endif