aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/Second-server.csproj
diff options
context:
space:
mode:
authorjhurliman2007-03-02 08:36:57 +0000
committerjhurliman2007-03-02 08:36:57 +0000
commit91c11314acbec75bfdfa878b69b02543629b2b17 (patch)
treec0f56f7ea5c6bd98a15a65fcc1fb508523b982ec /src/Second-server.csproj
parentMissed these 2 (diff)
downloadopensim-SC_OLD-91c11314acbec75bfdfa878b69b02543629b2b17.zip
opensim-SC_OLD-91c11314acbec75bfdfa878b69b02543629b2b17.tar.gz
opensim-SC_OLD-91c11314acbec75bfdfa878b69b02543629b2b17.tar.bz2
opensim-SC_OLD-91c11314acbec75bfdfa878b69b02543629b2b17.tar.xz
* Bind to IPAddress.Any instead of a hardcoded address
* Allow login if a connection can't be made to the grid auth server (instead of crashing) * Brought the MSVC project file and solution up to speed * Added a default VersionInfo.cs to allow compiling with MSVC * Removed unnecessary .suo file
Diffstat (limited to 'src/Second-server.csproj')
-rw-r--r--src/Second-server.csproj36
1 files changed, 20 insertions, 16 deletions
diff --git a/src/Second-server.csproj b/src/Second-server.csproj
index 6d049ce..a4cd744 100644
--- a/src/Second-server.csproj
+++ b/src/Second-server.csproj
@@ -6,10 +6,10 @@
6 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 6 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
7 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 7 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
8 <ProjectGuid>{132A6E3E-8F2D-4BF5-BDFB-8555F53F334E}</ProjectGuid> 8 <ProjectGuid>{132A6E3E-8F2D-4BF5-BDFB-8555F53F334E}</ProjectGuid>
9 <StartupObject>OpenSim.Controller</StartupObject> 9 <StartupObject>OpenSim.OpenSim_Main</StartupObject>
10 </PropertyGroup> 10 </PropertyGroup>
11 <PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> 11 <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
12 <OutputPath>bin\Debug\</OutputPath> 12 <OutputPath>..\bin\</OutputPath>
13 <Optimize>False</Optimize> 13 <Optimize>False</Optimize>
14 <DefineConstants>DEBUG;TRACE</DefineConstants> 14 <DefineConstants>DEBUG;TRACE</DefineConstants>
15 <DebugSymbols>True</DebugSymbols> 15 <DebugSymbols>True</DebugSymbols>
@@ -17,7 +17,7 @@
17 <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> 17 <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
18 </PropertyGroup> 18 </PropertyGroup>
19 <PropertyGroup Condition=" '$(Configuration)' == 'Release' "> 19 <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
20 <OutputPath>bin\Release\</OutputPath> 20 <OutputPath>..\bin\</OutputPath>
21 <Optimize>True</Optimize> 21 <Optimize>True</Optimize>
22 <DefineConstants>TRACE</DefineConstants> 22 <DefineConstants>TRACE</DefineConstants>
23 <DebugSymbols>False</DebugSymbols> 23 <DebugSymbols>False</DebugSymbols>
@@ -29,6 +29,7 @@
29 <SpecificVersion>False</SpecificVersion> 29 <SpecificVersion>False</SpecificVersion>
30 <HintPath>..\bin\Axiom.MathLib.dll</HintPath> 30 <HintPath>..\bin\Axiom.MathLib.dll</HintPath>
31 </Reference> 31 </Reference>
32 <Reference Include="Db4objects.Db4o, Version=6.0.1.0, Culture=neutral, PublicKeyToken=6199cd4f203aa8eb, processorArchitecture=MSIL" />
32 <Reference Include="libsecondlife, Version=0.9.0.0, Culture=neutral, processorArchitecture=MSIL"> 33 <Reference Include="libsecondlife, Version=0.9.0.0, Culture=neutral, processorArchitecture=MSIL">
33 <SpecificVersion>False</SpecificVersion> 34 <SpecificVersion>False</SpecificVersion>
34 <HintPath>..\bin\libsecondlife.dll</HintPath> 35 <HintPath>..\bin\libsecondlife.dll</HintPath>
@@ -42,19 +43,22 @@
42 <Reference Include="System.Xml" /> 43 <Reference Include="System.Xml" />
43 </ItemGroup> 44 </ItemGroup>
44 <ItemGroup> 45 <ItemGroup>
45 <Compile Include="Agent_Manager.cs" /> 46 <Compile Include="Config.cs" />
46 <Compile Include="Controller.cs" /> 47 <Compile Include="Main.cs" />
47 <Compile Include="Prim_manager.cs" /> 48 <Compile Include="OpenSimClient.cs" />
48 <Compile Include="Login_manager.cs" /> 49 <Compile Include="types\BitPack.cs" />
49 <Compile Include="Physics_manager.cs" /> 50 <Compile Include="types\Mesh.cs" />
50 <Compile Include="Script_manager.cs" /> 51 <Compile Include="types\Triangle.cs" />
51 <Compile Include="Server.cs" /> 52 <Compile Include="Util.cs" />
52 <Compile Include="StorageManager.cs" /> 53 <Compile Include="VersionInfo.cs" />
53 <Compile Include="GridManager.cs" /> 54 <Compile Include="world\Avatar.cs" />
54 <Compile Include="Globals.cs" /> 55 <Compile Include="world\Entity.cs" />
55 <Compile Include="InventoryManager.cs" /> 56 <Compile Include="world\Primitive.cs" />
56 <Compile Include="SceneGraphManager.cs" /> 57 <Compile Include="world\ScriptEngine.cs" />
57 <Compile Include="AssetManagement.cs" /> 58 <Compile Include="world\scripting\IScript.cs" />
59 <Compile Include="world\SurfacePatch.cs" />
60 <Compile Include="world\TerrainDecoder.cs" />
61 <Compile Include="world\World.cs" />
58 </ItemGroup> 62 </ItemGroup>
59 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" /> 63 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
60</Project> \ No newline at end of file 64</Project> \ No newline at end of file