You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@ -0,0 +1,52 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <copyright file="AssemblyInfo.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Security.Permissions;
|
||||
using System.Security;
|
||||
|
||||
[assembly: DependencyAttribute("System.ComponentModel.DataAnnotations,", LoadHint.Always)]
|
||||
[assembly: DependencyAttribute("System.Web,", LoadHint.Always)]
|
||||
[assembly: DependencyAttribute("System.Web.Extensions,", LoadHint.Always)]
|
||||
|
||||
// We can't make it SecurityTransparent due to performance implications
|
||||
//[assembly: SecurityTransparent]
|
||||
#pragma warning disable 618
|
||||
[assembly: SecurityPermission(SecurityAction.RequestMinimum, Execution = true)]
|
||||
#pragma warning restore 618
|
||||
|
||||
[assembly: SuppressMessage("Microsoft.Design", "CA2210:AssembliesShouldHaveValidStrongNames",
|
||||
Justification = "Assembly is delay-signed.")]
|
||||
|
||||
// System.Web.DynamicData.Test is our managed code unit test assembly, which needs
|
||||
// to have access to internal members in this assembly.
|
||||
[assembly: InternalsVisibleTo("System.Web.DynamicData.Test, PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293")]
|
||||
|
||||
// Opts into the VS loading icons from the FrameworkIcon Satellite assemblies found under VSIP\Icons
|
||||
[assembly:System.Drawing.BitmapSuffixInSatelliteAssemblyAttribute()]
|
||||
|
||||
#if ATLAS_DEV
|
||||
[assembly: AllowPartiallyTrustedCallers(PartialTrustVisibilityLevel = PartialTrustVisibilityLevel.NotVisibleByDefault)]
|
||||
[assembly: SecurityRules(SecurityRuleSet.Level2, SkipVerificationInFullTrust = true)]
|
||||
[assembly: SecurityTransparent]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: CLSCompliant(true)]
|
||||
[assembly: AssemblyVersion("99.0.0.0")]
|
||||
[assembly: NeutralResourcesLanguage("en-US")]
|
||||
#endif
|
||||
|
||||
// Suppress Code Analysis violations for terms that appear frequently in resource strings
|
||||
[module: SuppressMessage("Microsoft.Naming", "CA1703:ResourceStringsShouldBeSpelledCorrectly",
|
||||
MessageId = "Databound", Scope = "resource", Target = "System.Web.Resources.DynamicDataResources.resources",
|
||||
Justification = "The term 'Databound' is already being used in similar context.")]
|
||||
[assembly: SuppressMessage("Microsoft.Naming", "CA1701:ResourceStringCompoundWordsShouldBeCasedCorrectly",
|
||||
MessageId = "HyperLink", Scope = "resource", Target = "System.Web.Resources.DynamicDataResources.resources",
|
||||
Justification = "This usage matches the name of the HyperLink class.")]
|
Reference in New Issue
Block a user