Annotation of /trunk/ModularRex/ModularRex.csproj
Parent Directory
|
Revision Log
Revision 16 - (view) (download)
| 1 : | afrisby | 2 | <?xml version="1.0" encoding="utf-8"?> |
| 2 : | <Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| 3 : | <PropertyGroup> | ||
| 4 : | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
| 5 : | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
| 6 : | <ProductVersion>9.0.21022</ProductVersion> | ||
| 7 : | <SchemaVersion>2.0</SchemaVersion> | ||
| 8 : | <ProjectGuid>{4AC582D6-1168-450B-BDCF-431B6AD31F30}</ProjectGuid> | ||
| 9 : | <OutputType>Library</OutputType> | ||
| 10 : | <AppDesignerFolder>Properties</AppDesignerFolder> | ||
| 11 : | <RootNamespace>ModularRex</RootNamespace> | ||
| 12 : | <AssemblyName>ModularRex</AssemblyName> | ||
| 13 : | <TargetFrameworkVersion>v2.0</TargetFrameworkVersion> | ||
| 14 : | <FileAlignment>512</FileAlignment> | ||
| 15 : | </PropertyGroup> | ||
| 16 : | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
| 17 : | <DebugSymbols>true</DebugSymbols> | ||
| 18 : | <DebugType>full</DebugType> | ||
| 19 : | <Optimize>false</Optimize> | ||
| 20 : | afrisby | 6 | <OutputPath>..\..\bin\</OutputPath> |
| 21 : | afrisby | 2 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
| 22 : | <ErrorReport>prompt</ErrorReport> | ||
| 23 : | <WarningLevel>4</WarningLevel> | ||
| 24 : | </PropertyGroup> | ||
| 25 : | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
| 26 : | <DebugType>pdbonly</DebugType> | ||
| 27 : | <Optimize>true</Optimize> | ||
| 28 : | <OutputPath>bin\Release\</OutputPath> | ||
| 29 : | <DefineConstants>TRACE</DefineConstants> | ||
| 30 : | <ErrorReport>prompt</ErrorReport> | ||
| 31 : | <WarningLevel>4</WarningLevel> | ||
| 32 : | </PropertyGroup> | ||
| 33 : | <ItemGroup> | ||
| 34 : | mikkopa | 12 | <Reference Include="IronMath, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL" /> |
| 35 : | <Reference Include="IronPython, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL" /> | ||
| 36 : | afrisby | 2 | <Reference Include="log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=1b44e1d426115821, processorArchitecture=MSIL"> |
| 37 : | <SpecificVersion>False</SpecificVersion> | ||
| 38 : | <HintPath>..\..\bin\log4net.dll</HintPath> | ||
| 39 : | </Reference> | ||
| 40 : | <Reference Include="Nini, Version=1.1.0.0, Culture=neutral, PublicKeyToken=691faec150a7fa7b, processorArchitecture=MSIL"> | ||
| 41 : | <SpecificVersion>False</SpecificVersion> | ||
| 42 : | <HintPath>..\..\bin\Nini.dll</HintPath> | ||
| 43 : | </Reference> | ||
| 44 : | <Reference Include="OpenMetaverse, Version=1.0.0.24732, Culture=neutral, processorArchitecture=MSIL"> | ||
| 45 : | <SpecificVersion>False</SpecificVersion> | ||
| 46 : | <HintPath>..\..\bin\OpenMetaverse.dll</HintPath> | ||
| 47 : | </Reference> | ||
| 48 : | <Reference Include="OpenMetaverseTypes, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL"> | ||
| 49 : | <SpecificVersion>False</SpecificVersion> | ||
| 50 : | <HintPath>..\..\bin\OpenMetaverseTypes.dll</HintPath> | ||
| 51 : | </Reference> | ||
| 52 : | <Reference Include="System" /> | ||
| 53 : | <Reference Include="System.Data" /> | ||
| 54 : | <Reference Include="System.Xml" /> | ||
| 55 : | afrisby | 3 | <Reference Include="XMLRPC, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL"> |
| 56 : | <SpecificVersion>False</SpecificVersion> | ||
| 57 : | <HintPath>..\..\bin\XMLRPC.dll</HintPath> | ||
| 58 : | </Reference> | ||
| 59 : | afrisby | 2 | </ItemGroup> |
| 60 : | <ItemGroup> | ||
| 61 : | kalma | 16 | <Compile Include="RexDBObjects\RexFriendListItem.cs" /> |
| 62 : | <Compile Include="RexDBObjects\RexUserAgentData.cs" /> | ||
| 63 : | <Compile Include="RexDBObjects\RexUserProfileData.cs" /> | ||
| 64 : | <Compile Include="RexNetwork\AuthenticationService.cs" /> | ||
| 65 : | afrisby | 3 | <Compile Include="RexNetwork\IClientRexAppearance.cs" /> |
| 66 : | <Compile Include="RexNetwork\IClientRexFaceExpression.cs" /> | ||
| 67 : | <Compile Include="RexNetwork\RexLogin\RexLoginModule.cs" /> | ||
| 68 : | afrisby | 2 | <Compile Include="RexNetwork\RexPacketServer.cs" /> |
| 69 : | <Compile Include="RexNetwork\RexUDPServer.cs" /> | ||
| 70 : | <Compile Include="RexParts\ModrexAppearance.cs" /> | ||
| 71 : | <Compile Include="RexParts\ModrexFacialExpression.cs" /> | ||
| 72 : | <Compile Include="RexNetwork\RexClientView.cs" /> | ||
| 73 : | <Compile Include="Properties\AssemblyInfo.cs" /> | ||
| 74 : | mikkopa | 7 | <Compile Include="RexParts\ModRexVoice\VoiceChatServer.cs" /> |
| 75 : | <Compile Include="RexParts\ModRexVoice\VoiceClient.cs" /> | ||
| 76 : | <Compile Include="RexParts\ModRexVoice\VoicePacket.cs" /> | ||
| 77 : | <Compile Include="RexParts\ModRexVoice\VoicePacketHeader.cs" /> | ||
| 78 : | mikkopa | 12 | <Compile Include="RexParts\RexObjects\RexMaterialsDictionary.cs" /> |
| 79 : | afrisby | 5 | <Compile Include="RexParts\RexObjects\RexObjectGroup.cs" /> |
| 80 : | <Compile Include="RexParts\RexObjects\RexObjectPart.cs" /> | ||
| 81 : | mikkopa | 12 | <Compile Include="RexParts\RexPython\IRexBot.cs" /> |
| 82 : | <Compile Include="RexParts\RexPython\RexEventManager.cs" /> | ||
| 83 : | <Compile Include="RexParts\RexPython\RexPythonScriptAccessImpl.cs" /> | ||
| 84 : | <Compile Include="RexParts\RexPython\RexScriptEngine.cs" /> | ||
| 85 : | <Compile Include="RexParts\RexPython\RexScriptInterface.cs" /> | ||
| 86 : | <Compile Include="RexParts\RexScriptAccess.cs" /> | ||
| 87 : | afrisby | 5 | <Compile Include="RexParts\RexScriptTestModule.cs" /> |
| 88 : | afrisby | 2 | <Compile Include="RexParts\RexTestModule.cs" /> |
| 89 : | mikkopa | 12 | <Compile Include="RexParts\Rex_BuiltIn_Commands.cs" /> |
| 90 : | <Compile Include="RexParts\Rex_BuiltIn_Commands_Interface.cs" /> | ||
| 91 : | afrisby | 2 | </ItemGroup> |
| 92 : | <ItemGroup> | ||
| 93 : | <ProjectReference Include="..\..\OpenSim\Framework\Communications\OpenSim.Framework.Communications.csproj"> | ||
| 94 : | <Project>{CB52B7E7-0000-0000-0000-000000000000}</Project> | ||
| 95 : | <Name>OpenSim.Framework.Communications</Name> | ||
| 96 : | </ProjectReference> | ||
| 97 : | mikkopa | 15 | <ProjectReference Include="..\..\OpenSim\Framework\Console\OpenSim.Framework.Console.csproj"> |
| 98 : | <Project>{0ED8EBE8-0000-0000-0000-000000000000}</Project> | ||
| 99 : | <Name>OpenSim.Framework.Console</Name> | ||
| 100 : | </ProjectReference> | ||
| 101 : | afrisby | 2 | <ProjectReference Include="..\..\OpenSim\Framework\OpenSim.Framework.csproj"> |
| 102 : | <Project>{8ACA2445-0000-0000-0000-000000000000}</Project> | ||
| 103 : | <Name>OpenSim.Framework</Name> | ||
| 104 : | </ProjectReference> | ||
| 105 : | afrisby | 6 | <ProjectReference Include="..\..\OpenSim\Framework\Servers\OpenSim.Framework.Servers.csproj"> |
| 106 : | <Project>{2CC71860-0000-0000-0000-000000000000}</Project> | ||
| 107 : | <Name>OpenSim.Framework.Servers</Name> | ||
| 108 : | </ProjectReference> | ||
| 109 : | afrisby | 2 | <ProjectReference Include="..\..\OpenSim\Region\Application\OpenSim.csproj"> |
| 110 : | <Project>{438A9556-0000-0000-0000-000000000000}</Project> | ||
| 111 : | <Name>OpenSim</Name> | ||
| 112 : | </ProjectReference> | ||
| 113 : | <ProjectReference Include="..\..\OpenSim\Region\ClientStack\LindenUDP\OpenSim.Region.ClientStack.LindenUDP.csproj"> | ||
| 114 : | <Project>{CE1E9132-0000-0000-0000-000000000000}</Project> | ||
| 115 : | <Name>OpenSim.Region.ClientStack.LindenUDP</Name> | ||
| 116 : | </ProjectReference> | ||
| 117 : | <ProjectReference Include="..\..\OpenSim\Region\ClientStack\OpenSim.Region.ClientStack.csproj"> | ||
| 118 : | <Project>{DC3698B2-0000-0000-0000-000000000000}</Project> | ||
| 119 : | <Name>OpenSim.Region.ClientStack</Name> | ||
| 120 : | </ProjectReference> | ||
| 121 : | afrisby | 3 | <ProjectReference Include="..\..\OpenSim\Region\Communications\Local\OpenSim.Region.Communications.Local.csproj"> |
| 122 : | <Project>{BFB5D807-0000-0000-0000-000000000000}</Project> | ||
| 123 : | <Name>OpenSim.Region.Communications.Local</Name> | ||
| 124 : | </ProjectReference> | ||
| 125 : | afrisby | 2 | <ProjectReference Include="..\..\OpenSim\Region\Environment\OpenSim.Region.Environment.csproj"> |
| 126 : | <Project>{DCBA491C-0000-0000-0000-000000000000}</Project> | ||
| 127 : | <Name>OpenSim.Region.Environment</Name> | ||
| 128 : | </ProjectReference> | ||
| 129 : | <ProjectReference Include="..\..\OpenSim\Region\Interfaces\OpenSim.Region.Interfaces.csproj"> | ||
| 130 : | <Project>{83169C4E-0000-0000-0000-000000000000}</Project> | ||
| 131 : | <Name>OpenSim.Region.Interfaces</Name> | ||
| 132 : | </ProjectReference> | ||
| 133 : | mikkopa | 12 | <ProjectReference Include="..\..\OpenSim\Region\Physics\Manager\OpenSim.Region.Physics.Manager.csproj"> |
| 134 : | <Project>{FDCF8D3D-0000-0000-0000-000000000000}</Project> | ||
| 135 : | <Name>OpenSim.Region.Physics.Manager</Name> | ||
| 136 : | </ProjectReference> | ||
| 137 : | <ProjectReference Include="..\..\OpenSim\Region\ScriptEngine\Shared\Api\Implementation\OpenSim.Region.ScriptEngine.Shared.Api.csproj"> | ||
| 138 : | <Project>{C18E3417-0000-0000-0000-000000000000}</Project> | ||
| 139 : | <Name>OpenSim.Region.ScriptEngine.Shared.Api</Name> | ||
| 140 : | </ProjectReference> | ||
| 141 : | <ProjectReference Include="..\..\OpenSim\Region\ScriptEngine\Shared\OpenSim.Region.ScriptEngine.Shared.csproj"> | ||
| 142 : | <Project>{F93F91AD-0000-0000-0000-000000000000}</Project> | ||
| 143 : | <Name>OpenSim.Region.ScriptEngine.Shared</Name> | ||
| 144 : | </ProjectReference> | ||
| 145 : | afrisby | 2 | </ItemGroup> |
| 146 : | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
| 147 : | <!-- To modify your build process, add your task inside one of the targets below and uncomment it. | ||
| 148 : | Other similar extension points exist, see Microsoft.Common.targets. | ||
| 149 : | <Target Name="BeforeBuild"> | ||
| 150 : | </Target> | ||
| 151 : | <Target Name="AfterBuild"> | ||
| 152 : | </Target> | ||
| 153 : | --> | ||
| 154 : | </Project> |
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

