AssemblyInfo.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. //
  2. // AssemblyInfo.cs
  3. //
  4. //
  5. // Permission is hereby granted, free of charge, to any person obtaining
  6. // a copy of this software and associated documentation files (the
  7. // "Software"), to deal in the Software without restriction, including
  8. // without limitation the rights to use, copy, modify, merge, publish,
  9. // distribute, sublicense, and/or sell copies of the Software, and to
  10. // permit persons to whom the Software is furnished to do so, subject to
  11. // the following conditions:
  12. //
  13. // The above copyright notice and this permission notice shall be
  14. // included in all copies or substantial portions of the Software.
  15. //
  16. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  17. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  18. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  19. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  20. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  21. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  22. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  23. //
  24. using System;
  25. using System.Reflection;
  26. using System.Resources;
  27. using System.Security;
  28. using System.Security.Permissions;
  29. using System.Diagnostics;
  30. using System.Runtime.CompilerServices;
  31. using System.Runtime.InteropServices;
  32. [assembly: AssemblyTitle ("System.ServiceModel.Internals.dll")]
  33. [assembly: AssemblyDescription ("Contains share code for some System.ServiceModel libraries")]
  34. [assembly: AssemblyDefaultAlias ("System.ServiceModel.dll")]
  35. [assembly: AssemblyInformationalVersion (Consts.FxFileVersion)]
  36. [assembly: AssemblyFileVersion (Consts.FxFileVersion)]
  37. [assembly: NeutralResourcesLanguage ("en-US")]
  38. [assembly: CLSCompliant (true)]
  39. [assembly: AssemblyDelaySign (true)]
  40. #if NET_2_1
  41. [assembly: AssemblyKeyFile ("../winfx.pub")]
  42. #else
  43. [assembly: AssemblyKeyFile ("../ecma.pub")]
  44. [assembly: AllowPartiallyTrustedCallers]
  45. [assembly: ComCompatibleVersion (1, 0, 3300, 0)]
  46. [assembly: SecurityCritical (SecurityCriticalScope.Explicit)]
  47. #endif
  48. [assembly: InternalsVisibleTo ("SMDiagnostics, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull)]
  49. [assembly: InternalsVisibleTo ("System.Runtime.DurableInstancing, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull2)]
  50. [assembly: InternalsVisibleTo ("System.Runtime.Serialization, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull2)]
  51. [assembly: InternalsVisibleTo ("System.IdentityModel, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull2)]
  52. [assembly: InternalsVisibleTo ("System.IdentityModel.Selectors, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull2)]
  53. [assembly: InternalsVisibleTo ("System.ServiceModel, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull2)]
  54. [assembly: InternalsVisibleTo ("System.ServiceModel.Web, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull2)]
  55. [assembly: ComVisible (false)]