mirror of
git://opensimulator.org/git/opensim
synced 2026-08-14 17:12:17 +00:00
Currently the vm is at a early stage and very limited: currently only supports static methods (instance methods support is nearly finished though) currently a class can't have member variables, so currently only local variables in the methods. Also in this branch, connecting the vm to opensim is not completely finished: it is being uploaded just for viewing purposes.
75 lines
3.1 KiB
XML
75 lines
3.1 KiB
XML
<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> |