diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Server/Base/ProtocolVersions.cs (renamed from OpenSim/Grid/AssetServer/Properties/AssemblyInfo.cs) | 67 |
1 files changed, 30 insertions, 37 deletions
diff --git a/OpenSim/Grid/AssetServer/Properties/AssemblyInfo.cs b/OpenSim/Server/Base/ProtocolVersions.cs index 5d67e3f..488a9e6 100644 --- a/OpenSim/Grid/AssetServer/Properties/AssemblyInfo.cs +++ b/OpenSim/Server/Base/ProtocolVersions.cs | |||
@@ -1,4 +1,4 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (c) Contributors, http://opensimulator.org/ | 2 | * Copyright (c) Contributors, http://opensimulator.org/ |
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | 3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. |
4 | * | 4 | * |
@@ -25,39 +25,32 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System.Reflection; | 28 | namespace OpenSim.Server.Base |
29 | using System.Runtime.InteropServices; | 29 | { |
30 | 30 | public class ProtocolVersions | |
31 | // General information about an assembly is controlled through the following | 31 | { |
32 | // set of attributes. Change these attribute values to modify the information | 32 | /// <value> |
33 | // associated with an assembly. | 33 | /// This is the external protocol versions. It is separate from the OpenSimulator project version. |
34 | 34 | /// | |
35 | [assembly : AssemblyTitle("OGS-AssetServer")] | 35 | /// These version numbers should be increased by 1 every time a code |
36 | [assembly : AssemblyDescription("")] | 36 | /// change in the Service.Connectors and Server.Handlers, espectively, |
37 | [assembly : AssemblyConfiguration("")] | 37 | /// makes the previous OpenSimulator revision incompatible |
38 | [assembly : AssemblyCompany("http://opensimulator.org")] | 38 | /// with the new revision. |
39 | [assembly : AssemblyProduct("OGS-AssetServer")] | 39 | /// |
40 | [assembly : AssemblyCopyright("Copyright (c) OpenSimulator.org Developers 2007-2009")] | 40 | /// Changes which are compatible with an older revision (e.g. older revisions experience degraded functionality |
41 | [assembly : AssemblyTrademark("")] | 41 | /// but not outright failure) do not need a version number increment. |
42 | [assembly : AssemblyCulture("")] | 42 | /// |
43 | 43 | /// Having this version number allows the grid service to reject connections from regions running a version | |
44 | // Setting ComVisible to false makes the types in this assembly not visible | 44 | /// of the code that is too old. |
45 | // to COM components. If you need to access a type in this assembly from | 45 | /// |
46 | // COM, set the ComVisible attribute to true on that type. | 46 | /// </value> |
47 | 47 | ||
48 | [assembly : ComVisible(false)] | 48 | // The range of acceptable servers for client-side connectors |
49 | 49 | public readonly static int ClientProtocolVersionMin = 0; | |
50 | // The following GUID is for the ID of the typelib if this project is exposed to COM | 50 | public readonly static int ClientProtocolVersionMax = 0; |
51 | 51 | ||
52 | [assembly : Guid("b541b244-3d1d-4625-9003-bc2a3a6a39a4")] | 52 | // The range of acceptable clients in server-side handlers |
53 | 53 | public readonly static int ServerProtocolVersionMin = 0; | |
54 | // Version information for an assembly consists of the following four values: | 54 | public readonly static int ServerProtocolVersionMax = 0; |
55 | // | 55 | } |
56 | // Major Version | 56 | } |
57 | // Minor Version | ||
58 | // Build Number | ||
59 | // Revision | ||
60 | // | ||
61 | |||
62 | [assembly : AssemblyVersion("0.6.5.*")] | ||
63 | [assembly : AssemblyFileVersion("0.6.5.0")] | ||