-
Notifications
You must be signed in to change notification settings - Fork 13
/
SharedAssemblyInfo.cs
29 lines (24 loc) · 1.21 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
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// <copyright>Copyright 2012-2017 Lawo AG (http://www.lawo.com).</copyright>
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
using System.Reflection;
using System.Resources;
// General
[assembly: AssemblyCompany("Lawo AG")]
[assembly: AssemblyProduct("Lawo.EmberPlusSharp")]
[assembly: AssemblyCopyright("Copyright 2012-2017 Lawo AG (http://www.lawo.com). Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)")]
[assembly: AssemblyTrademark("")]
#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
#else
[assembly: AssemblyConfiguration("Release")]
#endif
// i18n
[assembly: AssemblyCulture("")]
[assembly: NeutralResourcesLanguage("en-US")]
// Versioning
[assembly: AssemblyVersion("0.0.0.1")]
[assembly: AssemblyFileVersion("0.0.0.1")]
[assembly: AssemblyInformationalVersion("0.0.0.1")]