Browse Source

Use IronRuby 1.0 RC2 assemblies for .NET 4.0 RC1.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@5521 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
pull/1/head
Matt Ward 16 years ago
parent
commit
440a96e542
  1. BIN
      src/AddIns/BackendBindings/Ruby/IronRuby/bin/IronRuby.Libraries.Yaml.dll
  2. BIN
      src/AddIns/BackendBindings/Ruby/IronRuby/bin/IronRuby.Libraries.dll
  3. BIN
      src/AddIns/BackendBindings/Ruby/IronRuby/bin/IronRuby.dll
  4. BIN
      src/AddIns/BackendBindings/Ruby/IronRuby/bin/Microsoft.Dynamic.dll
  5. BIN
      src/AddIns/BackendBindings/Ruby/IronRuby/bin/Microsoft.Scripting.Core.dll
  6. BIN
      src/AddIns/BackendBindings/Ruby/IronRuby/bin/Microsoft.Scripting.Debugging.dll
  7. BIN
      src/AddIns/BackendBindings/Ruby/IronRuby/bin/Microsoft.Scripting.ExtensionAttribute.dll
  8. BIN
      src/AddIns/BackendBindings/Ruby/IronRuby/bin/Microsoft.Scripting.dll
  9. BIN
      src/AddIns/BackendBindings/Ruby/IronRuby/bin/ir.exe
  10. 4
      src/AddIns/BackendBindings/Ruby/IronRuby/bin/ir.exe.config
  11. 13
      src/AddIns/BackendBindings/Ruby/RubyBinding/Project/RubyBinding.csproj
  12. 2
      src/AddIns/BackendBindings/Ruby/RubyBinding/Project/ir.exe.config
  13. 29
      src/AddIns/BackendBindings/Ruby/RubyBinding/Test/RubyBinding.Tests.csproj
  14. 9
      src/AddIns/BackendBindings/Ruby/RubyBinding/Test/Utils/MockWorkbench.cs

BIN
src/AddIns/BackendBindings/Ruby/IronRuby/bin/IronRuby.Libraries.Yaml.dll

Binary file not shown.

BIN
src/AddIns/BackendBindings/Ruby/IronRuby/bin/IronRuby.Libraries.dll

Binary file not shown.

BIN
src/AddIns/BackendBindings/Ruby/IronRuby/bin/IronRuby.dll

Binary file not shown.

BIN
src/AddIns/BackendBindings/Ruby/IronRuby/bin/Microsoft.Dynamic.dll

Binary file not shown.

BIN
src/AddIns/BackendBindings/Ruby/IronRuby/bin/Microsoft.Scripting.Core.dll

Binary file not shown.

BIN
src/AddIns/BackendBindings/Ruby/IronRuby/bin/Microsoft.Scripting.Debugging.dll

Binary file not shown.

BIN
src/AddIns/BackendBindings/Ruby/IronRuby/bin/Microsoft.Scripting.ExtensionAttribute.dll

Binary file not shown.

BIN
src/AddIns/BackendBindings/Ruby/IronRuby/bin/Microsoft.Scripting.dll

Binary file not shown.

BIN
src/AddIns/BackendBindings/Ruby/IronRuby/bin/ir.exe

Binary file not shown.

4
src/AddIns/BackendBindings/Ruby/IronRuby/bin/ir.exe.config

@ -1,12 +1,12 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<configuration> <configuration>
<configSections> <configSections>
<section name='microsoft.scripting' requirePermission='false' type='Microsoft.Scripting.Hosting.Configuration.Section, Microsoft.Scripting, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'/> <section name='microsoft.scripting' requirePermission='false' type='Microsoft.Scripting.Hosting.Configuration.Section, Microsoft.Scripting, Version=1.0.30207.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'/>
</configSections> </configSections>
<microsoft.scripting> <microsoft.scripting>
<languages> <languages>
<language extensions='.py' displayName='IronPython 2.6.1' type='IronPython.Runtime.PythonContext, IronPython, Version=2.6.10920.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' names='IronPython;Python;py'/> <language extensions='.py' displayName='IronPython 2.6' type='IronPython.Runtime.PythonContext, IronPython, Version=2.6.10920.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' names='IronPython;Python;py'/>
<language extensions='.rb' displayName='IronRuby' type='IronRuby.Runtime.RubyContext, IronRuby, Version=0.9.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' names='IronRuby;Ruby;rb'/> <language extensions='.rb' displayName='IronRuby' type='IronRuby.Runtime.RubyContext, IronRuby, Version=0.9.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' names='IronRuby;Ruby;rb'/>
</languages> </languages>

13
src/AddIns/BackendBindings/Ruby/RubyBinding/Project/RubyBinding.csproj

@ -48,9 +48,6 @@
<Reference Include="IronRuby.Libraries"> <Reference Include="IronRuby.Libraries">
<HintPath>..\..\IronRuby\bin\IronRuby.Libraries.dll</HintPath> <HintPath>..\..\IronRuby\bin\IronRuby.Libraries.dll</HintPath>
</Reference> </Reference>
<Reference Include="IronRuby.Libraries.Yaml">
<HintPath>..\..\IronRuby\bin\IronRuby.Libraries.Yaml.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Build" /> <Reference Include="Microsoft.Build" />
<Reference Include="Microsoft.Build.Engine" /> <Reference Include="Microsoft.Build.Engine" />
<Reference Include="Microsoft.Dynamic"> <Reference Include="Microsoft.Dynamic">
@ -59,16 +56,8 @@
<Reference Include="Microsoft.Scripting"> <Reference Include="Microsoft.Scripting">
<HintPath>..\..\IronRuby\bin\Microsoft.Scripting.dll</HintPath> <HintPath>..\..\IronRuby\bin\Microsoft.Scripting.dll</HintPath>
</Reference> </Reference>
<Reference Include="Microsoft.Scripting.Core">
<HintPath>..\..\IronRuby\bin\Microsoft.Scripting.Core.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Scripting.Debugging">
<HintPath>..\..\IronRuby\bin\Microsoft.Scripting.Debugging.dll</HintPath>
</Reference>
<Reference Include="System" /> <Reference Include="System" />
<Reference Include="System.Core"> <Reference Include="System.Core" />
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Design" /> <Reference Include="System.Design" />
<Reference Include="System.Drawing" /> <Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" /> <Reference Include="System.Windows.Forms" />

2
src/AddIns/BackendBindings/Ruby/RubyBinding/Project/ir.exe.config

@ -1,7 +1,7 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<configuration> <configuration>
<configSections> <configSections>
<section name='microsoft.scripting' requirePermission='false' type='Microsoft.Scripting.Hosting.Configuration.Section, Microsoft.Scripting, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'/> <section name='microsoft.scripting' requirePermission='false' type='Microsoft.Scripting.Hosting.Configuration.Section, Microsoft.Scripting, Version=1.0.30207.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'/>
</configSections> </configSections>
<microsoft.scripting> <microsoft.scripting>

29
src/AddIns/BackendBindings/Ruby/RubyBinding/Test/RubyBinding.Tests.csproj

@ -46,9 +46,6 @@
<Reference Include="IronRuby.Libraries"> <Reference Include="IronRuby.Libraries">
<HintPath>..\..\IronRuby\bin\IronRuby.Libraries.dll</HintPath> <HintPath>..\..\IronRuby\bin\IronRuby.Libraries.dll</HintPath>
</Reference> </Reference>
<Reference Include="IronRuby.Libraries.Yaml">
<HintPath>..\..\IronRuby\bin\IronRuby.Libraries.Yaml.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Build" /> <Reference Include="Microsoft.Build" />
<Reference Include="Microsoft.Build.Engine" /> <Reference Include="Microsoft.Build.Engine" />
<Reference Include="Microsoft.Dynamic"> <Reference Include="Microsoft.Dynamic">
@ -57,36 +54,20 @@
<Reference Include="Microsoft.Scripting"> <Reference Include="Microsoft.Scripting">
<HintPath>..\..\IronRuby\bin\Microsoft.Scripting.dll</HintPath> <HintPath>..\..\IronRuby\bin\Microsoft.Scripting.dll</HintPath>
</Reference> </Reference>
<Reference Include="Microsoft.Scripting.Core">
<HintPath>..\..\IronRuby\bin\Microsoft.Scripting.Core.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Scripting.Debugging">
<HintPath>..\..\IronRuby\bin\Microsoft.Scripting.Debugging.dll</HintPath>
</Reference>
<Reference Include="nunit.framework"> <Reference Include="nunit.framework">
<HintPath>..\..\..\..\..\Tools\NUnit\nunit.framework.dll</HintPath> <HintPath>..\..\..\..\..\Tools\NUnit\nunit.framework.dll</HintPath>
</Reference> </Reference>
<Reference Include="PresentationCore"> <Reference Include="PresentationCore" />
<RequiredTargetFramework>3.0</RequiredTargetFramework> <Reference Include="PresentationFramework" />
</Reference>
<Reference Include="PresentationFramework">
<RequiredTargetFramework>3.0</RequiredTargetFramework>
</Reference>
<Reference Include="System" /> <Reference Include="System" />
<Reference Include="System.Core"> <Reference Include="System.Core" />
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" /> <Reference Include="System.Data" />
<Reference Include="System.Design" /> <Reference Include="System.Design" />
<Reference Include="System.Drawing" /> <Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" /> <Reference Include="System.Windows.Forms" />
<Reference Include="System.Xaml"> <Reference Include="System.Xaml" />
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="System.Xml" /> <Reference Include="System.Xml" />
<Reference Include="WindowsBase"> <Reference Include="WindowsBase" />
<RequiredTargetFramework>3.0</RequiredTargetFramework>
</Reference>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="AddInOptionsTestFixture.cs" /> <Compile Include="AddInOptionsTestFixture.cs" />

9
src/AddIns/BackendBindings/Ruby/RubyBinding/Test/Utils/MockWorkbench.cs

@ -158,5 +158,14 @@ namespace RubyBinding.Tests.Utils
{ {
throw new NotImplementedException(); throw new NotImplementedException();
} }
public bool FullScreen {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
} }
} }

Loading…
Cancel
Save