forked from ClearFoundry/ClearScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssemblyInfo.Core.cs
More file actions
33 lines (24 loc) · 946 Bytes
/
Copy pathAssemblyInfo.Core.cs
File metadata and controls
33 lines (24 loc) · 946 Bytes
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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("ClearScript Core Library")]
[assembly: AssemblyProduct("ClearScript")]
[assembly: AssemblyCopyright("(c) Microsoft Corporation")]
[assembly: InternalsVisibleTo("ClearScript.V8")]
[assembly: InternalsVisibleTo("ClearScript.Windows")]
[assembly: InternalsVisibleTo("ClearScript.Windows.Core")]
[assembly: InternalsVisibleTo("ClearScriptTest")]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("7.5.1.1")]
[assembly: AssemblyFileVersion("7.5.1.1")]
[assembly: AssemblyInformationalVersion("7.5.1.1")]
namespace Microsoft.ClearScript.Properties
{
internal static class ClearScriptVersion
{
public const string Normal = "7.5.1.1";
public const string Informational = "7.5.1.1";
}
}