|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// Always hard bind to System.dll and System.Drawing.dll
using System.Runtime.CompilerServices;
[assembly: Dependency("System,", LoadHint.Always)]
[assembly: Dependency("System.Drawing,", LoadHint.Always)]
[assembly: Dependency("System.Core", LoadHint.Sometimes)]
// This is now trun on by default, use source file NO_RUNTIMECOMPATIBILITY_ATTRIBUTE flag to control this
// [assembly:RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: StringFreezing]
[assembly: System.Runtime.InteropServices.TypeLibVersion(2, 4)]
// Opts into the VS loading icons from the Icon Satellite assembly: System.Windows.Forms.VisualStudio.<version>.0.dll
[assembly: System.Drawing.BitmapSuffixInSatelliteAssembly]
|