blob: 65ae3f3b312a1f06be81176a1394ee080cd50966 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: CLSCompliant(true)]
[assembly: AssemblyTitle("IceGrid .NET Client Library")]
[assembly: AssemblyDescription("IceGrid .NET Client Library")]
[assembly: AssemblyCompany("ZeroC, Inc.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyProduct("Ice")]
[assembly: AssemblyCopyright("© ZeroC, Inc.")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyVersion("3.7.3.1")]
[assembly: ComVisible(false)]
|