OpenSim.Scripting.EmbeddedJVM.csproj 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  4. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  5. <ProductVersion>8.0.50727</ProductVersion>
  6. <SchemaVersion>2.0</SchemaVersion>
  7. <ProjectGuid>{17CB6836-7500-4A3C-9B81-71D4FE564421}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>OpenSim.Scripting.EmbeddedJVM</RootNamespace>
  11. <AssemblyName>OpenSim.Scripting.EmbeddedJVM</AssemblyName>
  12. <StartupObject>
  13. </StartupObject>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>bin\Debug\</OutputPath>
  20. <DefineConstants>DEBUG;TRACE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  25. <DebugType>pdbonly</DebugType>
  26. <Optimize>true</Optimize>
  27. <OutputPath>bin\Release\</OutputPath>
  28. <DefineConstants>TRACE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Reference Include="System" />
  34. <Reference Include="System.Data" />
  35. <Reference Include="System.Xml" />
  36. </ItemGroup>
  37. <ItemGroup>
  38. <Compile Include="ClassRecord.cs" />
  39. <Compile Include="ClassInstance.cs" />
  40. <Compile Include="Heap.cs" />
  41. <Compile Include="Interpreter.cs" />
  42. <Compile Include="InterpreterLogic.cs" />
  43. <Compile Include="InterpreterMethods.cs" />
  44. <Compile Include="InterpreterReturn.cs" />
  45. <Compile Include="MainMemory.cs" />
  46. <Compile Include="MethodMemory.cs" />
  47. <Compile Include="Object.cs" />
  48. <Compile Include="OpenSimJVM.cs" />
  49. <Compile Include="Properties\AssemblyInfo.cs" />
  50. <Compile Include="Stack.cs" />
  51. <Compile Include="StackFrame.cs" />
  52. <Compile Include="Thread.cs" />
  53. <Compile Include="Types\ArrayReference.cs" />
  54. <Compile Include="Types\BaseType.cs" />
  55. <Compile Include="Types\ObjectReference.cs" />
  56. <Compile Include="Types\PrimitiveTypes\Byte.cs" />
  57. <Compile Include="Types\PrimitiveTypes\Char.cs" />
  58. <Compile Include="Types\PrimitiveTypes\Float.cs" />
  59. <Compile Include="Types\PrimitiveTypes\Int.cs" />
  60. </ItemGroup>
  61. <ItemGroup>
  62. <ProjectReference Include="..\OpenSim.Framework\OpenSim.Framework.csproj">
  63. <Project>{8ACA2445-0000-0000-0000-000000000000}</Project>
  64. <Name>OpenSim.Framework</Name>
  65. </ProjectReference>
  66. </ItemGroup>
  67. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  68. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  69. Other similar extension points exist, see Microsoft.Common.targets.
  70. <Target Name="BeforeBuild">
  71. </Target>
  72. <Target Name="AfterBuild">
  73. </Target>
  74. -->
  75. </Project>