AssemblyInfo.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* Copyright 2010-2016 MongoDB Inc.
  2. *
  3. * Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. *
  7. * http://www.apache.org/licenses/LICENSE-2.0
  8. *
  9. * Unless required by applicable law or agreed to in writing, software
  10. * distributed under the License is distributed on an "AS IS" BASIS,
  11. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. * See the License for the specific language governing permissions and
  13. * limitations under the License.
  14. */
  15. using System;
  16. using System.Reflection;
  17. using System.Runtime.CompilerServices;
  18. using System.Runtime.InteropServices;
  19. // General Information about an assembly is controlled through the following
  20. // set of attributes. Change these attribute values to modify the information
  21. // associated with an assembly.
  22. [assembly: AssemblyTitle("MongoDB.Driver")]
  23. [assembly: AssemblyDescription("Official MongoDB supported driver for MongoDB. See http://www.mongodb.org/display/DOCS/CSharp+Language+Center for more details.")]
  24. [assembly: AssemblyProduct("MongoDB.Driver")]
  25. // The following GUID is for the ID of the typelib if this project is exposed to COM
  26. [assembly: Guid("09134819-2a03-409d-8f38-462bb20e23aa")]
  27. [assembly: CLSCompliant(true)]
  28. [assembly: ComVisible(false)]
  29. [assembly: InternalsVisibleTo("MongoDB.Driver.Legacy")]
  30. [assembly: InternalsVisibleTo("MongoDB.Driver.Legacy.Dotnet")]
  31. [assembly: InternalsVisibleTo("MongoDB.Driver.Legacy.TestHelpers")]
  32. [assembly: InternalsVisibleTo("MongoDB.Driver.Legacy.Tests")]
  33. [assembly: InternalsVisibleTo("MongoDB.Driver.Legacy.Tests.Dotnet")]
  34. [assembly: InternalsVisibleTo("MongoDB.Driver.Tests")]
  35. [assembly: InternalsVisibleTo("MongoDB.Driver.Tests.Dotnet")]
  36. [assembly: InternalsVisibleTo("MongoDB.Driver.TestHelpers")]