-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssemblyInfo.cs
More file actions
47 lines (44 loc) · 1.97 KB
/
AssemblyInfo.cs
File metadata and controls
47 lines (44 loc) · 1.97 KB
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
40
41
42
43
44
45
46
47
/*
*
* MvxLib, an open source C# library used for communication with Intentia Movex.
* http://mvxlib.sourceforge.net
*
* Copyright (C) 2005 - 2007 Mattias Bengtsson
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
using System.Reflection;
using System.Runtime.CompilerServices;
[assembly: AssemblyTitle("MvxLib")]
[assembly: AssemblyDescription("A free C# implementation of MvxSockX. Provides an API to communicate with Intentia Movex MI-programs via the FPW-service.")]
[assembly: AssemblyCompany("")]
#if MONO
[assembly: AssemblyProduct("MvxLib (compiled with Mono)")]
[assembly: AssemblyConfiguration("Compiled with Mono")]
#elif NET_2_0
[assembly: AssemblyProduct("MvxLib (compiled with Microsoft .NET Framework 2.0)")]
[assembly: AssemblyConfiguration("Compiled with Microsoft .NET Framework 2.0")]
#else
[assembly: AssemblyProduct("MvxLib (compiled with Microsoft .NET Framework 1.1)")]
[assembly: AssemblyConfiguration("Compiled with Microsoft .NET Framework 1.1")]
#endif
[assembly: AssemblyCopyright("Copyright (C) 2005 - 2007 Mattias Bengtsson")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyVersion("0.3.*")]
[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile("")]
[assembly: AssemblyKeyName("")]