How to integrate FxRuby framework with Aptana Studio 3? - aptana

I want to use Aptana Studio 3 Beta for all my Ruby developments. I am planning to write a Windows appl. using FxRuby framework, but how to integrate this framework with Aptana Studio 3?

I'm not 100% sure I understand what exactly you're looking for here. Studio 3 will index your ruby core, std lib and gems installed on whatever version fo Ruby is on your PATH. It uses that index to generate code assist. As long as you have the fxRuby libraries built and installed into your system, we should pick up the ruby API and offer code assist for you.
Here's the relevants ection of fxRuby's wiki on building their library on windows: https://github.com/lylejohnson/fxruby/wiki/Setting-Up-a-Windows-Build-Environment
I will say a word of caution: installing, building and generally dealing with Ruby binaries on Windows is a difficult task unless you're comfortable with MinGW.

Related

Can I use the Mono Framework and .NET Core on the same machine?

I want to code games in Unity, but also want to make some apps with .Net Core.So, do I have to reinstall visual studio every time I want to switch between the two?
Yes, just like you can have multiple versions of .net installed
I think it's OK, as long as unity is associated with visual studio, the specific steps are: Edit→preference→External Tools→External Script Editor, find the visual studio installation path and configure it

What is version support of Module created in DotnetNuke 7?

I have created a Module(Portal). I am going to publish it. I just don't know which version it can support. The previous versions and future versions. I am just curious above this all specially in case of .DLLs.
Please suggest me.
Development system
1- Visual Studio 2015
2- DotnetNuke 7
DLLs
It will all depend on what version of the DotNetNuke.DLLs you compile your module against.
Typically if you compile against a version, say 07.00.01, the module will run on that version AND any NEWER version of DNN.
There are some cases where there are breaking changes for modules on upgrade of the DNN version, but they are pretty few and far between.

Build and run ASP.NET 4.5 on OSX using Sublime or Atom text editors

I would like to build and run an existing ASP.NET (v4.5) application on OSX. While I am finding numerous working example of ASP.NET 5 apps running on OSX, I cannot find anything for older versions of ASP.NET? Am I missing something? Also, it would be perfect if there was a build plugin for Sublime or Atom for that method too.
ASP.NET 5 is a complete redesign to be open-source and available cross platform. Prior versions require Windows.
https://docs.asp.net/en/latest/conceptual-overview/aspnet.html

Creating an ASP.NET MVC app from scratch

So far i've only been using webforms. But me and my friend would like to try out the MVC architecture. Some questions:
Is there any downside with the free version of visual studio VS professional? I can get the professional version from work but is it worth the effort?
I would like to use Entity Framework and the latest version of MVC + the razor view engine. Does this need to be downloaded separatly?
As far as versioning is concerned; is tortoise SVN suitable for a small project on 2 persons?
Any help is appreciated, thanks.
SVN is ok as a repository in my experience. If you are using Visual Studio there is a decent plugin so you can use it from within the IDE, rather than from within Windows. If I am using SVN, it is what I use! More details here.
MVC3 can be downloaded here
Entity Framework can be installed via Nuget (PM> Install-Package EntityFramework ) or a quick google will show the download locations (I think there is version 4.3 and a CTP of version 5)
Free version will work, not sure if there are any differences.
Yes you need to download it seperately
Why wouldn;t it be?
Not that I know of. It's a good way to start. I know earlier versions didn't allow plugins but not sure about the latest versions.
EF will come with the .NET SDK (VS) so no need there. You can get MVC3 from the Web Platform Installer (http://www.asp.net/mvc/mvc3)
I use Tortoise SVN on a team of 4 people with no issues at all. Just make sure you all know good rules for source control management.

WPF4 support for MVVM Light Toolkit

When installing the package, I only get binaries for Silverlight 3/4/5 and Windows Phone, nothing for WPF. What I am doing wrong ?
Thanks guys, sorry if my question was not detailed enough.
I've been using the procedure described at Laurent's Website and in the binaries directory, I have only 5 dirs corresponding to Silverlight 3/4/5, WP7 and WP71. Nothing about .Net 4.
I've tried GalaSoft.MvvmLight.V3.0.2.19 and GalaSoft.MvvmLight.V4beta1.4.0.2.19 with the same result.
On the v4 beta 1, the install window doesn't show .Net in the binaries nor the Snippets.
Could this be related to the fact that I'm using Studio 2010 Express despite that Laurent said that his package can also be used with Express? I can understand that for the snippets, not for the binaries.
They're labelled as ".Net 4". Should be there along with Silverlight and Windows Phone 7.
As you did not describe how you installed MVVM Light I cannot answer your question as to what went wrong. However, I can describe the easiest way of including MVVM Light into your project:
Install the NuGet package manager.
Create your project (WPF / SL / WP7).
Install one of the following packages
MVVM Light
This installs version 3 of MVVM Light and also configures your project to the conventions used by MVVM Light.
MVVM Light Libraries Only
Installs only the version 3 libraries, but leaves your project untouched.
MVVM Light [Preview]
Installs version 4 of MVVM Light, including the project conventions.
MVVM Light Libraries Only [Preview]
INstalls the version 4 libraries, but leaves your project unchanged.
Alternatively you can use the installer using the installer and the procedure described at Laurent's web site. If you use this approach the libraries should be installed under %program files%\Laurent Bugnion (GalaSoft)\Mvvm Light Toolkit\Binaries or the path you specified during the install.
The installer is good for installing the templates, snippets, etc., however, for production I strongly recommend using the NuGet packages as they usually offer an upgrade path should there be bugfixes.

Resources