AssemblyAttributes.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //Copyright 2010 Microsoft Corporation
  2. //
  3. //Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
  4. //You may obtain a copy of the License at
  5. //
  6. //http://www.apache.org/licenses/LICENSE-2.0
  7. //
  8. //Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
  9. //"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. //See the License for the specific language governing permissions and limitations under the License.
  11. using System;
  12. using System.Reflection;
  13. using System.Security;
  14. using System.Resources;
  15. using System.Diagnostics;
  16. using System.Runtime.InteropServices;
  17. using System.Runtime.CompilerServices;
  18. [assembly:ComVisible(false)]
  19. [assembly:CLSCompliant(false)]
  20. [assembly:AssemblyTitle("System.Data.Services.Client.dll")]
  21. [assembly:AssemblyDescription("System.Data.Services.Client.dll")]
  22. [assembly:AssemblyDefaultAlias("System.Data.Services.Client.dll")]
  23. [assembly:AssemblyCompany("Microsoft Corporation")]
  24. [assembly:AssemblyProduct("Microsoft\u00AE .NET Framework")]
  25. [assembly:AssemblyCopyright("\u00A9 Microsoft Corporation. All rights reserved.")]
  26. [assembly:NeutralResourcesLanguageAttribute("en-US")]
  27. [assembly: System.Security.SecurityCritical]
  28. #if ASTORIA_LIGHT
  29. [assembly: System.Reflection.AssemblyVersion(ThisAssembly.Version)]
  30. [assembly: System.Reflection.AssemblyFileVersion(ThisAssembly.InformationalVersion)]
  31. [assembly: System.Reflection.AssemblyInformationalVersion(ThisAssembly.InformationalVersion)]
  32. [assembly: System.Resources.SatelliteContractVersion(ThisAssembly.Version)]
  33. internal static class ThisAssembly
  34. {
  35. internal const string Version = "2.0.5.0";
  36. internal const string InformationalVersion = "2.0.40216.0";
  37. }
  38. internal static class AssemblyRef
  39. {
  40. internal const string MicrosoftSilverlightPublicKeyToken = "b03f5f7f11d50a3a";
  41. }
  42. #endif