From f58edfb4795505575af57ffaf5fe73c56460abb1 Mon Sep 17 00:00:00 2001
From: MW
Date: Thu, 15 Mar 2007 12:36:06 +0000
Subject: Created VS2005 Solution/Project files for the OGS apps
---
ogs/OGS-UserServer.sln | 32 +++++++++++++
ogs/ServerConsole/Properties/AssemblyInfo.cs | 33 +++++++++++++
ogs/ServerConsole/ServerConsole.csproj | 49 +++++++++++++++++++
ogs/common/VersionInfo/VersionInfo.cs | 37 ++++++++++++++
ogs/gridserver/src/OGS-GridServer.csproj | 69 +++++++++++++++++++++++++++
ogs/gridserver/src/Properties/AssemblyInfo.cs | 33 +++++++++++++
ogs/userserver/src/OGS-UserServer.csproj | 68 ++++++++++++++++++++++++++
ogs/userserver/src/OGS-UserServer.csproj.user | 16 +++++++
ogs/userserver/src/Properties/AssemblyInfo.cs | 33 +++++++++++++
9 files changed, 370 insertions(+)
create mode 100644 ogs/OGS-UserServer.sln
create mode 100644 ogs/ServerConsole/Properties/AssemblyInfo.cs
create mode 100644 ogs/ServerConsole/ServerConsole.csproj
create mode 100644 ogs/common/VersionInfo/VersionInfo.cs
create mode 100644 ogs/gridserver/src/OGS-GridServer.csproj
create mode 100644 ogs/gridserver/src/Properties/AssemblyInfo.cs
create mode 100644 ogs/userserver/src/OGS-UserServer.csproj
create mode 100644 ogs/userserver/src/OGS-UserServer.csproj.user
create mode 100644 ogs/userserver/src/Properties/AssemblyInfo.cs
diff --git a/ogs/OGS-UserServer.sln b/ogs/OGS-UserServer.sln
new file mode 100644
index 0000000..6c98af1
--- /dev/null
+++ b/ogs/OGS-UserServer.sln
@@ -0,0 +1,32 @@
+
+Microsoft Visual Studio Solution File, Format Version 9.00
+# Visual C# Express 2005
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OGS-UserServer", "userserver\src\OGS-UserServer.csproj", "{D45B6E48-5668-478D-B9CB-6D46E665FACF}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServerConsole", "ServerConsole\ServerConsole.csproj", "{7667E6E2-F227-41A2-B1B2-315613E1BAFC}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OGS-GridServer", "gridserver\src\OGS-GridServer.csproj", "{FE50A574-C8ED-433B-95F0-213A5EED2AB2}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {D45B6E48-5668-478D-B9CB-6D46E665FACF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {D45B6E48-5668-478D-B9CB-6D46E665FACF}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {D45B6E48-5668-478D-B9CB-6D46E665FACF}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {D45B6E48-5668-478D-B9CB-6D46E665FACF}.Release|Any CPU.Build.0 = Release|Any CPU
+ {7667E6E2-F227-41A2-B1B2-315613E1BAFC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {7667E6E2-F227-41A2-B1B2-315613E1BAFC}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {7667E6E2-F227-41A2-B1B2-315613E1BAFC}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {7667E6E2-F227-41A2-B1B2-315613E1BAFC}.Release|Any CPU.Build.0 = Release|Any CPU
+ {FE50A574-C8ED-433B-95F0-213A5EED2AB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {FE50A574-C8ED-433B-95F0-213A5EED2AB2}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {FE50A574-C8ED-433B-95F0-213A5EED2AB2}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {FE50A574-C8ED-433B-95F0-213A5EED2AB2}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/ogs/ServerConsole/Properties/AssemblyInfo.cs b/ogs/ServerConsole/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..0028e2a
--- /dev/null
+++ b/ogs/ServerConsole/Properties/AssemblyInfo.cs
@@ -0,0 +1,33 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("ServerConsole")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("ServerConsole")]
+[assembly: AssemblyCopyright("Copyright © 2007")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("c4d85def-4c2e-449d-bf4a-449b8cf03736")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/ogs/ServerConsole/ServerConsole.csproj b/ogs/ServerConsole/ServerConsole.csproj
new file mode 100644
index 0000000..7f3005e
--- /dev/null
+++ b/ogs/ServerConsole/ServerConsole.csproj
@@ -0,0 +1,49 @@
+
+
+ Debug
+ AnyCPU
+ 8.0.50727
+ 2.0
+ {7667E6E2-F227-41A2-B1B2-315613E1BAFC}
+ Library
+ Properties
+ ServerConsole
+ ServerConsole
+
+
+
+
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ pdbonly
+ true
+ ..\common\bin\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ogs/common/VersionInfo/VersionInfo.cs b/ogs/common/VersionInfo/VersionInfo.cs
new file mode 100644
index 0000000..9763e62
--- /dev/null
+++ b/ogs/common/VersionInfo/VersionInfo.cs
@@ -0,0 +1,37 @@
+/*
+Copyright (c) OpenSim project, http://osgrid.org/
+*
+* Redistribution and use in source and binary forms, with or without
+* modification, are permitted provided that the following conditions are met:
+* * Redistributions of source code must retain the above copyright
+* notice, this list of conditions and the following disclaimer.
+* * Redistributions in binary form must reproduce the above copyright
+* notice, this list of conditions and the following disclaimer in the
+* documentation and/or other materials provided with the distribution.
+* * Neither the name of the nor the
+* names of its contributors may be used to endorse or promote products
+* derived from this software without specific prior written permission.
+*
+* THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY
+* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+* DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY
+* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
+
+using System;
+
+namespace OpenGridServices
+{
+ ///
+ ///
+ public class VersionInfo
+ {
+ public static string Version = "0.1, Build 1173843165, Revision 193:206M";
+ }
+}
diff --git a/ogs/gridserver/src/OGS-GridServer.csproj b/ogs/gridserver/src/OGS-GridServer.csproj
new file mode 100644
index 0000000..d984e9a
--- /dev/null
+++ b/ogs/gridserver/src/OGS-GridServer.csproj
@@ -0,0 +1,69 @@
+
+
+ Debug
+ AnyCPU
+ 8.0.50727
+ 2.0
+ {FE50A574-C8ED-433B-95F0-213A5EED2AB2}
+ Exe
+ Properties
+ OGS_GridServer
+ OGS-GridServer
+
+
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+ False
+ ..\..\common\bin\libsecondlife.dll
+
+
+
+
+
+
+
+ OGS-Console.cs
+
+
+ Util.cs
+
+
+ VersionInfo.cs
+
+
+
+
+
+
+
+
+
+ {7667E6E2-F227-41A2-B1B2-315613E1BAFC}
+ ServerConsole
+
+
+
+
+
\ No newline at end of file
diff --git a/ogs/gridserver/src/Properties/AssemblyInfo.cs b/ogs/gridserver/src/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..8471e6b
--- /dev/null
+++ b/ogs/gridserver/src/Properties/AssemblyInfo.cs
@@ -0,0 +1,33 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("OGS-GridServer")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("OGS-GridServer")]
+[assembly: AssemblyCopyright("Copyright © 2007")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("b541b244-3d1d-4625-9003-bc2a3a6a39a4")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/ogs/userserver/src/OGS-UserServer.csproj b/ogs/userserver/src/OGS-UserServer.csproj
new file mode 100644
index 0000000..f6737c8
--- /dev/null
+++ b/ogs/userserver/src/OGS-UserServer.csproj
@@ -0,0 +1,68 @@
+
+
+ Debug
+ AnyCPU
+ 8.0.50727
+ 2.0
+ {D45B6E48-5668-478D-B9CB-6D46E665FACF}
+ Exe
+ Properties
+ OGS_UserServer
+ OGS-UserServer
+ OpenGridServices.OpenUser_Main
+
+
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+ False
+ ..\..\common\bin\libsecondlife.dll
+
+
+
+
+
+
+
+ OGS-Console.cs
+
+
+ VersionInfo.cs
+
+
+
+
+
+
+
+
+
+
+ {7667E6E2-F227-41A2-B1B2-315613E1BAFC}
+ ServerConsole
+
+
+
+
+
\ No newline at end of file
diff --git a/ogs/userserver/src/OGS-UserServer.csproj.user b/ogs/userserver/src/OGS-UserServer.csproj.user
new file mode 100644
index 0000000..9c0b2d9
--- /dev/null
+++ b/ogs/userserver/src/OGS-UserServer.csproj.user
@@ -0,0 +1,16 @@
+
+
+ publish\
+
+
+
+
+
+
+
+
+ 0
+ en-US
+ false
+
+
\ No newline at end of file
diff --git a/ogs/userserver/src/Properties/AssemblyInfo.cs b/ogs/userserver/src/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..5d5ce8d
--- /dev/null
+++ b/ogs/userserver/src/Properties/AssemblyInfo.cs
@@ -0,0 +1,33 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("OGS-UserServer")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("OGS-UserServer")]
+[assembly: AssemblyCopyright("Copyright © 2007")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("e266513a-090b-4d38-80f6-8599eef68c8c")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
--
cgit v1.1