Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Tkachenko <olegtk@microsoft.com>2017-05-08 21:24:33 +0300
committerOleg Tkachenko <olegtk@microsoft.com>2017-05-08 21:24:33 +0300
commit19fbcc14e30219af42e3880703531fa0a89d18c2 (patch)
tree6a3a5db0a9eab4b939920c19188d5179f9e35f7b /src/Text/Def/TextLogic/AssemblyInfo.cs
parent7f6a5fc245efb9415caa7ecc3afbe0be2bba7833 (diff)
Initial commit of VS 2017 RTW bits
Diffstat (limited to 'src/Text/Def/TextLogic/AssemblyInfo.cs')
-rw-r--r--src/Text/Def/TextLogic/AssemblyInfo.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/Text/Def/TextLogic/AssemblyInfo.cs b/src/Text/Def/TextLogic/AssemblyInfo.cs
new file mode 100644
index 0000000..d7ef5a3
--- /dev/null
+++ b/src/Text/Def/TextLogic/AssemblyInfo.cs
@@ -0,0 +1,23 @@
+// Copyright (c) Microsoft Corporation
+// All rights reserved
+
+using System.Reflection;
+using System.Runtime.ConstrainedExecution;
+using System.Runtime.Versioning;
+using System.Security.Permissions;
+
+//
+// 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.
+//
+
+[assembly: ComponentGuarantees(ComponentGuaranteesOptions.Stable)]
+
+[assembly: AssemblyConfiguration ("")]
+[assembly: AssemblyTrademark ("")]
+[assembly: AssemblyCulture ("")]
+#pragma warning disable 618
+[assembly: SecurityPermission (SecurityAction.RequestMinimum, Flags = SecurityPermissionFlag.Execution)]
+#pragma warning restore 618
+[assembly: ReliabilityContract(Consistency.MayCorruptProcess, Cer.MayFail)]