diff --git a/README.txt b/README.txt index 5fc3bf9ae0..818208642c 100644 --- a/README.txt +++ b/README.txt @@ -27,3 +27,8 @@ secondlife.exe -loginuri http://localhost:8080/ * cd to bin/ and run "mono OpenSim.exe -sandbox -loginserver" +=== Windows Nant Build === + +* same as Linux/mono build, but use +nant nogenvers +to cicumvent bash invokation diff --git a/VERSION b/VERSION new file mode 100644 index 0000000000..b87eee815d --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +0.0.0.1 \ No newline at end of file diff --git a/opensim.build b/opensim.build index a08a486525..cb692dcceb 100644 --- a/opensim.build +++ b/opensim.build @@ -16,11 +16,23 @@ - - - - + + + + + + + + + + + + + + + + @@ -41,20 +53,22 @@ + + - - - + + + @@ -62,6 +76,7 @@ + diff --git a/src/AssemblyInfo.cs b/src/AssemblyInfo.cs new file mode 100644 index 0000000000..b88eb7582d --- /dev/null +++ b/src/AssemblyInfo.cs @@ -0,0 +1,21 @@ +using System; +using System.Reflection; +using System.Runtime.InteropServices; + +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +[assembly: ComVisibleAttribute(false)] +[assembly: CLSCompliantAttribute(false)] +[assembly: AssemblyVersionAttribute("0.0.0.1")] +[assembly: AssemblyTitleAttribute("opensim")] +[assembly: AssemblyDescriptionAttribute("The C# implementation of the simulator portion of OGS")] +[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")] + diff --git a/src/Config/SimConfig/AssemblyInfo.cs b/src/Config/SimConfig/AssemblyInfo.cs index 96c3e7383d..f808f4c057 100644 --- a/src/Config/SimConfig/AssemblyInfo.cs +++ b/src/Config/SimConfig/AssemblyInfo.cs @@ -1,31 +1,21 @@ +using System; using System.Reflection; -using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -// Information about this assembly is defined by the following -// attributes. +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 // -// change them to the information which is associated with the assembly -// you compile. +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ -[assembly: AssemblyTitle("SimConfig")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("SimConfig")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] +[assembly: ComVisibleAttribute(false)] +[assembly: CLSCompliantAttribute(false)] +[assembly: AssemblyVersionAttribute("0.0.0.1")] +[assembly: AssemblyTitleAttribute("opensim-simconfig")] +[assembly: AssemblyDescriptionAttribute("The default configuration handler")] +[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")] -// This sets the default COM visibility of types in the assembly to invisible. -// If you need to expose a type to COM, use [ComVisible(true)] on that type. -[assembly: ComVisible(false)] - -// The assembly version has following format : -// -// Major.Minor.Build.Revision -// -// You can specify all values by your own or you can build default build and revision -// numbers with the '*' character (the default): - -[assembly: AssemblyVersion("1.0.*")] diff --git a/src/Config/default.build b/src/Config/default.build index 2ee0c52d3f..9e13ca6bdd 100644 --- a/src/Config/default.build +++ b/src/Config/default.build @@ -37,10 +37,11 @@ - - - + + + + diff --git a/src/GridInterfaces/AssemblyInfo.cs b/src/GridInterfaces/AssemblyInfo.cs index 89731a1f0d..0ff408f463 100644 --- a/src/GridInterfaces/AssemblyInfo.cs +++ b/src/GridInterfaces/AssemblyInfo.cs @@ -1,31 +1,21 @@ +using System; using System.Reflection; -using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -// Information about this assembly is defined by the following -// attributes. +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 // -// change them to the information which is associated with the assembly -// you compile. +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ -[assembly: AssemblyTitle("GridInterfaces")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("GridInterfaces")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] +[assembly: ComVisibleAttribute(false)] +[assembly: CLSCompliantAttribute(false)] +[assembly: AssemblyVersionAttribute("0.0.0.1")] +[assembly: AssemblyTitleAttribute("opensim-gridinterfaces")] +[assembly: AssemblyDescriptionAttribute("Definitions for OGS interface")] +[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")] -// This sets the default COM visibility of types in the assembly to invisible. -// If you need to expose a type to COM, use [ComVisible(true)] on that type. -[assembly: ComVisible(false)] - -// The assembly version has following format : -// -// Major.Minor.Build.Revision -// -// You can specify all values by your own or you can build default build and revision -// numbers with the '*' character (the default): - -[assembly: AssemblyVersion("1.0.*")] diff --git a/src/GridInterfaces/default.build b/src/GridInterfaces/default.build index f29f1083ea..a1de6e544d 100644 --- a/src/GridInterfaces/default.build +++ b/src/GridInterfaces/default.build @@ -37,8 +37,9 @@ - - + + + diff --git a/src/GridServers/LoginServer.cs b/src/GridServers/LoginServer.cs index f63e077bcf..f96b9f96f1 100644 --- a/src/GridServers/LoginServer.cs +++ b/src/GridServers/LoginServer.cs @@ -38,6 +38,7 @@ using System.Security.Cryptography; using System.Xml; using libsecondlife; using OpenSim; +using OpenGrid.Framework; namespace OpenSim.GridServers { @@ -45,7 +46,7 @@ namespace OpenSim.GridServers /// /// When running in local (default) mode , handles client logins. /// - public class LoginServer + public class LoginServer : LoginService { public LoginServer(IGridServer gridServer) { diff --git a/src/LocalServers/LocalGridServers/AssemblyInfo.cs b/src/LocalServers/LocalGridServers/AssemblyInfo.cs index 103b49a207..3ca41e44e0 100644 --- a/src/LocalServers/LocalGridServers/AssemblyInfo.cs +++ b/src/LocalServers/LocalGridServers/AssemblyInfo.cs @@ -1,31 +1,21 @@ +using System; using System.Reflection; -using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -// Information about this assembly is defined by the following -// attributes. +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 // -// change them to the information which is associated with the assembly -// you compile. +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ -[assembly: AssemblyTitle("LocalGridServers")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("LocalGridServers")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] +[assembly: ComVisibleAttribute(false)] +[assembly: CLSCompliantAttribute(false)] +[assembly: AssemblyVersionAttribute("0.0.0.1")] +[assembly: AssemblyTitleAttribute("opensim-localservers")] +[assembly: AssemblyDescriptionAttribute("local grid servers")] +[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")] -// This sets the default COM visibility of types in the assembly to invisible. -// If you need to expose a type to COM, use [ComVisible(true)] on that type. -[assembly: ComVisible(false)] - -// The assembly version has following format : -// -// Major.Minor.Build.Revision -// -// You can specify all values by your own or you can build default build and revision -// numbers with the '*' character (the default): - -[assembly: AssemblyVersion("1.0.*")] diff --git a/src/LocalServers/default.build b/src/LocalServers/default.build index 06bfcaa9a0..14c52cd927 100644 --- a/src/LocalServers/default.build +++ b/src/LocalServers/default.build @@ -37,8 +37,8 @@ - - + + diff --git a/src/LocalStorage/Db4LocalStorage/AssemblyInfo.cs b/src/LocalStorage/Db4LocalStorage/AssemblyInfo.cs index 66106068df..79ad03602a 100644 --- a/src/LocalStorage/Db4LocalStorage/AssemblyInfo.cs +++ b/src/LocalStorage/Db4LocalStorage/AssemblyInfo.cs @@ -1,31 +1,21 @@ +using System; using System.Reflection; -using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -// Information about this assembly is defined by the following -// attributes. +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 // -// change them to the information which is associated with the assembly -// you compile. +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ -[assembly: AssemblyTitle("Db4LocalStorage")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Db4LocalStorage")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] +[assembly: ComVisibleAttribute(false)] +[assembly: CLSCompliantAttribute(false)] +[assembly: AssemblyVersionAttribute("0.0.0.1")] +[assembly: AssemblyTitleAttribute("opensim-localstorage")] +[assembly: AssemblyDescriptionAttribute("The local storage handler")] +[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")] -// This sets the default COM visibility of types in the assembly to invisible. -// If you need to expose a type to COM, use [ComVisible(true)] on that type. -[assembly: ComVisible(false)] - -// The assembly version has following format : -// -// Major.Minor.Build.Revision -// -// You can specify all values by your own or you can build default build and revision -// numbers with the '*' character (the default): - -[assembly: AssemblyVersion("1.0.*")] diff --git a/src/LocalStorage/default.build b/src/LocalStorage/default.build index e40eae7f97..5ed183e398 100644 --- a/src/LocalStorage/default.build +++ b/src/LocalStorage/default.build @@ -37,9 +37,9 @@ - - - + + + diff --git a/src/OpenGrid.Framework/AssemblyInfo.cs b/src/OpenGrid.Framework/AssemblyInfo.cs new file mode 100644 index 0000000000..0ff408f463 --- /dev/null +++ b/src/OpenGrid.Framework/AssemblyInfo.cs @@ -0,0 +1,21 @@ +using System; +using System.Reflection; +using System.Runtime.InteropServices; + +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +[assembly: ComVisibleAttribute(false)] +[assembly: CLSCompliantAttribute(false)] +[assembly: AssemblyVersionAttribute("0.0.0.1")] +[assembly: AssemblyTitleAttribute("opensim-gridinterfaces")] +[assembly: AssemblyDescriptionAttribute("Definitions for OGS interface")] +[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")] + diff --git a/src/OpenGrid.Framework/LoginService.cs b/src/OpenGrid.Framework/LoginService.cs new file mode 100644 index 0000000000..d38c271515 --- /dev/null +++ b/src/OpenGrid.Framework/LoginService.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using Nwc.XmlRpc; +using OpenSim.GridServers; +using libsecondlife; + +namespace OpenGrid.Framework +{ + public abstract class LoginService + { + + } +} diff --git a/src/OpenGrid.Framework/OpenGrid.Framework.csproj b/src/OpenGrid.Framework/OpenGrid.Framework.csproj new file mode 100644 index 0000000000..efbbcfbe98 --- /dev/null +++ b/src/OpenGrid.Framework/OpenGrid.Framework.csproj @@ -0,0 +1,57 @@ + + + Debug + AnyCPU + 8.0.50727 + 2.0 + {407CE85B-628C-4788-9DBC-49BCEFC3A84F} + Library + Properties + OpenGrid.Framework + OpenGrid.Framework + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + False + ..\..\bin\libsecondlife.dll + + + + + + + + + + + + {5DA3174D-42F9-416D-9F0B-AF41FA2BE2F9} + GridInterfaces + + + + + \ No newline at end of file diff --git a/src/OpenGrid.Framework/Properties/AssemblyInfo.cs b/src/OpenGrid.Framework/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..72e55b9e81 --- /dev/null +++ b/src/OpenGrid.Framework/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +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("OpenGrid.Framework")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Playahead AB")] +[assembly: AssemblyProduct("OpenGrid.Framework")] +[assembly: AssemblyCopyright("Copyright © Playahead AB 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("67d2b810-0969-4550-ab2b-d2f5ac191191")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Revision and Build Numbers +// by using the '*' as shown below: +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/src/OpenGrid.Framework/default.build b/src/OpenGrid.Framework/default.build new file mode 100644 index 0000000000..ee398a06f8 --- /dev/null +++ b/src/OpenGrid.Framework/default.build @@ -0,0 +1,50 @@ + + + nant buildfile for OpenGrid.Framework + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/RemoteServers/RemoteGridServers/AssemblyInfo.cs b/src/RemoteServers/RemoteGridServers/AssemblyInfo.cs index 0fa7d6ea66..4e8fb00ea2 100644 --- a/src/RemoteServers/RemoteGridServers/AssemblyInfo.cs +++ b/src/RemoteServers/RemoteGridServers/AssemblyInfo.cs @@ -1,31 +1,21 @@ +using System; using System.Reflection; -using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -// Information about this assembly is defined by the following -// attributes. +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 // -// change them to the information which is associated with the assembly -// you compile. +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ -[assembly: AssemblyTitle("RemoteGridServers")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("RemoteGridServers")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] +[assembly: ComVisibleAttribute(false)] +[assembly: CLSCompliantAttribute(false)] +[assembly: AssemblyVersionAttribute("0.0.0.1")] +[assembly: AssemblyTitleAttribute("opensim-remoteservers")] +[assembly: AssemblyDescriptionAttribute("Connects to remote OGS installation")] +[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")] -// This sets the default COM visibility of types in the assembly to invisible. -// If you need to expose a type to COM, use [ComVisible(true)] on that type. -[assembly: ComVisible(false)] - -// The assembly version has following format : -// -// Major.Minor.Build.Revision -// -// You can specify all values by your own or you can build default build and revision -// numbers with the '*' character (the default): - -[assembly: AssemblyVersion("1.0.*")] diff --git a/src/RemoteServers/default.build b/src/RemoteServers/default.build index 88196004c9..f8e69770f1 100644 --- a/src/RemoteServers/default.build +++ b/src/RemoteServers/default.build @@ -37,8 +37,8 @@ - - + + diff --git a/src/Second-server.csproj b/src/Second-server.csproj index c4e6ef8d57..be4a913e64 100644 --- a/src/Second-server.csproj +++ b/src/Second-server.csproj @@ -90,6 +90,10 @@ {74784F23-B0FD-484C-82C1-96C0215733DC} Db4LocalStorage + + {407CE85B-628C-4788-9DBC-49BCEFC3A84F} + OpenGrid.Framework + {3C86A846-7977-4EE7-A8DC-DD487FA5DC2B} PhysicsManager diff --git a/src/ServerConsole/ServerConsole/AssemblyInfo.cs b/src/ServerConsole/ServerConsole/AssemblyInfo.cs index 00a9b7d748..99da8730bb 100644 --- a/src/ServerConsole/ServerConsole/AssemblyInfo.cs +++ b/src/ServerConsole/ServerConsole/AssemblyInfo.cs @@ -1,31 +1,21 @@ +using System; using System.Reflection; -using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -// Information about this assembly is defined by the following -// attributes. +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 // -// change them to the information which is associated with the assembly -// you compile. +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ -[assembly: AssemblyTitle("ServerConsole")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("ServerConsole")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] +[assembly: ComVisibleAttribute(false)] +[assembly: CLSCompliantAttribute(false)] +[assembly: AssemblyVersionAttribute("0.0.0.1")] +[assembly: AssemblyTitleAttribute("opensim-serverconsole")] +[assembly: AssemblyDescriptionAttribute("The default server console")] +[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")] -// This sets the default COM visibility of types in the assembly to invisible. -// If you need to expose a type to COM, use [ComVisible(true)] on that type. -[assembly: ComVisible(false)] - -// The assembly version has following format : -// -// Major.Minor.Build.Revision -// -// You can specify all values by your own or you can build default build and revision -// numbers with the '*' character (the default): - -[assembly: AssemblyVersion("1.0.*")] diff --git a/src/ServerConsole/default.build b/src/ServerConsole/default.build index a6f6dc2660..0de930ad32 100644 --- a/src/ServerConsole/default.build +++ b/src/ServerConsole/default.build @@ -37,8 +37,8 @@ - - + + diff --git a/src/opensim.sln b/src/opensim.sln index 3f86420a16..e9951b817b 100644 --- a/src/opensim.sln +++ b/src/opensim.sln @@ -1,6 +1,6 @@  Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual C# Express 2005 +# Visual Studio 2005 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Second-server", "Second-server.csproj", "{132A6E3E-8F2D-4BF5-BDFB-8555F53F334E}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GridInterfaces", "GridInterfaces\GridInterfaces.csproj", "{5DA3174D-42F9-416D-9F0B-AF41FA2BE2F9}" @@ -21,6 +21,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BasicPhysicsplugin", "physi EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RealPhysXplugin", "physics\RealPhysX\RealPhysXplugin\RealPhysXplugin.csproj", "{56C1D214-F389-4228-921A-0A3A0712C159}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenGrid.Framework", "OpenGrid.Framework\OpenGrid.Framework.csproj", "{407CE85B-628C-4788-9DBC-49BCEFC3A84F}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -67,6 +69,10 @@ Global {56C1D214-F389-4228-921A-0A3A0712C159}.Debug|Any CPU.Build.0 = Debug|Any CPU {56C1D214-F389-4228-921A-0A3A0712C159}.Release|Any CPU.ActiveCfg = Release|Any CPU {56C1D214-F389-4228-921A-0A3A0712C159}.Release|Any CPU.Build.0 = Release|Any CPU + {407CE85B-628C-4788-9DBC-49BCEFC3A84F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {407CE85B-628C-4788-9DBC-49BCEFC3A84F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {407CE85B-628C-4788-9DBC-49BCEFC3A84F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {407CE85B-628C-4788-9DBC-49BCEFC3A84F}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/physics/AssemblyInfo.cs b/src/physics/AssemblyInfo.cs index 57a8913d33..b16bac9249 100644 --- a/src/physics/AssemblyInfo.cs +++ b/src/physics/AssemblyInfo.cs @@ -1,31 +1,21 @@ +using System; using System.Reflection; -using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -// Information about this assembly is defined by the following -// attributes. +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 // -// change them to the information which is associated with the assembly -// you compile. +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ -[assembly: AssemblyTitle("PhysicsManager")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("PhysicsManager")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] +[assembly: ComVisibleAttribute(false)] +[assembly: CLSCompliantAttribute(false)] +[assembly: AssemblyVersionAttribute("0.0.0.1")] +[assembly: AssemblyTitleAttribute("opensim-physicsmanager")] +[assembly: AssemblyDescriptionAttribute("Handles physics plugins")] +[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")] -// This sets the default COM visibility of types in the assembly to invisible. -// If you need to expose a type to COM, use [ComVisible(true)] on that type. -[assembly: ComVisible(false)] - -// The assembly version has following format : -// -// Major.Minor.Build.Revision -// -// You can specify all values by your own or you can build default build and revision -// numbers with the '*' character (the default): - -[assembly: AssemblyVersion("1.0.*")] diff --git a/src/physics/default.build b/src/physics/default.build index d39e62be36..01d2415b9d 100644 --- a/src/physics/default.build +++ b/src/physics/default.build @@ -37,8 +37,8 @@ - - + + diff --git a/src/physics/plugins/AssemblyInfo.cs b/src/physics/plugins/AssemblyInfo.cs index 0c9c06c43d..125d41772a 100644 --- a/src/physics/plugins/AssemblyInfo.cs +++ b/src/physics/plugins/AssemblyInfo.cs @@ -1,31 +1,21 @@ +using System; using System.Reflection; -using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -// Information about this assembly is defined by the following -// attributes. +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 // -// change them to the information which is associated with the assembly -// you compile. +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ -[assembly: AssemblyTitle("PhysXplugin")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("PhysXplugin")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] +[assembly: ComVisibleAttribute(false)] +[assembly: CLSCompliantAttribute(false)] +[assembly: AssemblyVersionAttribute("0.0.0.1")] +[assembly: AssemblyTitleAttribute("opensim-physicsmanager-physx")] +[assembly: AssemblyDescriptionAttribute("PhysX plugin for OpenSim")] +[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")] -// This sets the default COM visibility of types in the assembly to invisible. -// If you need to expose a type to COM, use [ComVisible(true)] on that type. -[assembly: ComVisible(false)] - -// The assembly version has following format : -// -// Major.Minor.Build.Revision -// -// You can specify all values by your own or you can build default build and revision -// numbers with the '*' character (the default): - -[assembly: AssemblyVersion("1.0.*")] diff --git a/src/physics/plugins/default.build b/src/physics/plugins/default.build index c40fea1ce7..66056a55fd 100644 --- a/src/physics/plugins/default.build +++ b/src/physics/plugins/default.build @@ -35,10 +35,12 @@ + + - - + +