This repository has been archived by the owner on Feb 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
SharedAssemblyInfo.cs
65 lines (63 loc) · 2.6 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// ******************************************************************
// Copyright (c) In The Hand Ltd. All rights reserved.
// This code is licensed under the MIT License (MIT).
// THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH
// THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE.
// ******************************************************************
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Resources;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
#if WINDOWS_PHONE
[assembly: AssemblyConfiguration("Windows Phone 8.0")]
#elif WINDOWS_PHONE_81
[assembly: AssemblyConfiguration("Windows Phone Silverlight 8.1")]
#elif WINDOWS_PHONE_APP
[assembly: AssemblyConfiguration("Windows Phone 8.1")]
#elif __IOS__
[assembly: AssemblyConfiguration("iOS")]
#elif __TVOS__
[assembly: AssemblyConfiguration("tvOS")]
#elif __ANDROID__
[assembly: AssemblyConfiguration("Android")]
#elif __MAC__
[assembly: AssemblyConfiguration("macOS")]
#elif WINDOWS_APP
[assembly: AssemblyConfiguration("Windows 8.1")]
#elif WINDOWS_UWP
[assembly: AssemblyConfiguration("Windows Universal")]
#elif WIN32
[assembly: AssemblyConfiguration("Windows")]
#elif TIZEN
[assembly: AssemblyConfiguration("Tizen")]
#else
[assembly: AssemblyConfiguration("Portable")]
#endif
[assembly: AssemblyProduct("Pontoon")]
[assembly: AssemblyTitle("Pontoon")]
[assembly: AssemblyDescription("A flexible bridge to the Universal Windows Platform")]
[assembly: AssemblyCompany("In The Hand Ltd")]
[assembly: AssemblyCopyright("Copyright © In The Hand Ltd 2013-18. All rights reserved.")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("10.2018.0.0")]
[assembly: AssemblyFileVersion("10.2018.10.02")]
[assembly: ComVisible(false)]
[assembly: NeutralResourcesLanguageAttribute("en-US")]