123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>8.0.50727</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{17CB6836-7500-4A3C-9B81-71D4FE564421}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>OpenSim.Scripting.EmbeddedJVM</RootNamespace>
- <AssemblyName>OpenSim.Scripting.EmbeddedJVM</AssemblyName>
- <StartupObject>
- </StartupObject>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="System" />
- <Reference Include="System.Data" />
- <Reference Include="System.Xml" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="ClassRecord.cs" />
- <Compile Include="ClassInstance.cs" />
- <Compile Include="Heap.cs" />
- <Compile Include="Interpreter.cs" />
- <Compile Include="InterpreterLogic.cs" />
- <Compile Include="InterpreterMethods.cs" />
- <Compile Include="InterpreterReturn.cs" />
- <Compile Include="MainMemory.cs" />
- <Compile Include="MethodMemory.cs" />
- <Compile Include="Object.cs" />
- <Compile Include="OpenSimJVM.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="Stack.cs" />
- <Compile Include="StackFrame.cs" />
- <Compile Include="Thread.cs" />
- <Compile Include="Types\ArrayReference.cs" />
- <Compile Include="Types\BaseType.cs" />
- <Compile Include="Types\ObjectReference.cs" />
- <Compile Include="Types\PrimitiveTypes\Byte.cs" />
- <Compile Include="Types\PrimitiveTypes\Char.cs" />
- <Compile Include="Types\PrimitiveTypes\Float.cs" />
- <Compile Include="Types\PrimitiveTypes\Int.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\OpenSim.Framework\OpenSim.Framework.csproj">
- <Project>{8ACA2445-0000-0000-0000-000000000000}</Project>
- <Name>OpenSim.Framework</Name>
- </ProjectReference>
- </ItemGroup>
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
- </Project>
|