-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSolutionInfo.cs
26 lines (22 loc) · 1022 Bytes
/
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
#region Disclaimer/Info
///////////////////////////////////////////////////////////////////////////////////////////////////
// Subtext WebLog
//
// Subtext is an open source weblog system that is a fork of the .TEXT
// weblog system.
//
// For updated news and information please visit http://subtextproject.com/
// Subtext is hosted at Google Code at http://code.google.com/p/subtext/
// The development mailing list is at [email protected]
//
// This project is licensed under the BSD license. See the License.txt file for more information.
///////////////////////////////////////////////////////////////////////////////////////////////////
#endregion
using System.Reflection;
using System.Resources;
[assembly: AssemblyCompany("Subtext")]
[assembly: AssemblyProduct("Subtext Blog Engine")]
[assembly: AssemblyCopyright("Copyright © Phil Haack. 2005-2010 - BSD License")]
[assembly: AssemblyInformationalVersion("2.5.2.0")]
[assembly: AssemblyDelaySign(false)]
[assembly: NeutralResourcesLanguage("en-US")]