Changing the default Virtual Directory/[TARGETVDIR] name in a Visual Studio Setup Project
While working on a Visual Studio Setup Project for an ASP.NET MVC application, I ran into an interesting dilemma. The installer automatically uses the Title of your setup project as the default virtual directory value. From a user experience standpoint, it can serve as a visual indicator that this "virtual directory" is specifically for the application that you (the user) are installing.
However, it isn’t ideal. See, usually the title of an installer is human readable e.g. "My Application". However, I don’t think user would want their virtual directory to contain spaces since spaces typically get escaped to a hex value, making your site’s address http://someserver/My%20Application. Visual Studio Setup Projects do not offer a straight-forward way of editing this default value, except to edit your title to read "MyApplication".
There are a handful of solutions that have been conceived by various people that include passing command line arguments or using custom dialog windows that set the TARGETVDIR parameter explicitly – to name a couple.
For different reasons, none of the proposed solutions satisfied my dilemma.
So, here is what I did:
I opened the deployment project in notepad++ (a very handy text editor), found the line that says, "VirtualDirectory" = "My Application" and changed it to "VirtualDirectory" = "MyApplication". After saving the file, reloading it in Visual Studio, and building my installers, my dilemma was solved. I hope this is helpful to you as well.
Gestalt = Low-Lying Awesome
Microsoft appears to be betting big on Silverlight. When the Silverlight 1.0 bits were released in 2007, my initial thoughts were, “Yay, Flash for .NET developers.” As Microsoft pushed forward with version 2, version 3, and now version 4 of Silverlight, those sarcastic thoughts have subsided to make way for more genuine curiosity. How did that happen?
Well, for starters, Microsoft delivered real features. Initially, Silverlight demos were all about media (music and video). In addition, Microsoft touted the interopability between dynamic languages like vbx, c#, python, ruby, and javascript. Then, that interopability was sidelined and Silverlight applications started to emerge. Which was interesting. In fact, Silverlight 2 had enough features to stir up debates in the enterprise over which RIA technology was best suited for enterprise applications: Flash 8 with Flex or Silverlight 2. Then, Microsoft played their wildcard. They made Silverlight play nicely with … ugh … Mac OSX. Out-of-browser Silverlight applications made me raise my eyebrows for a technology that I had quickly written off as a “fad”.
That might still be the case. I won’t make a claim either way. But, Silverlight and RIA are spaces where Microsoft continue to innovate. Gestalt is a very good example of that last statement. Gestalt is built atop a foundation consisting of XAML, Silverlight, and dynamic languages. It enables web developers to script their way to rich internet applications in a way that both Flash and Silverlight seemingly missed.
With that said, it is difficult to pinpoint exactly what value Gestalt adds, but you feel it when you’re molding some python, ruby, or javascript hackery into a magical Silverlight-powered application that just works.
The technology appears to still be more of a proof-of-concept than a supported product. But, it makes a strong case for embracing XAML and Silverlight.
Checkout the website and the samples at http://visitmix.com/labs/gestalt/.
Should IronRuby be called NSignificant?
Update: You’re more than welcome to read my angry rant below. However, I felt it would be more responsible if I summed up a few points right here at the very beginning:
- Dynamic languages are awesome for things like web development, scripting, and embedded customization engines for bigger applications.
- IMO, Ruby is more sought after for its web frameworks, scripting/automation (think Rake), and unit testing frameworks than its potential as an embedded language (unlike Python and Lua).
- John Lam’s open source Ruby extension, RubyCLR, enabled CRuby to use .NET types pretty effectively. In other words, I can have a Rails application using .NET code on the server-side if necessary. Or, I could use rspec to unit test my .NET libraries. Both could be done while leveraging the existing Ruby implementation and .NET Framework.
- When John Lam started work on IronRuby, RubyCLR was left to a community that let it fall by the wayside. In the meantime, IronRuby has not been nearly as impressive as IronPython. There, I said it.
Now, feel free to read the original rant below.
Harsh, right? I think so. But, it is time I voice my concerns about the Microsoft’s adaption of the Ruby language. My intent is to put it all out there, and see how the community feels. At the end of the day, my opinion is my own. However, the voice of the community could cause change – of my opinion or otherwise.
What’s beef?
Let me start by saying that I am a .NET developer. I have specialized in Microsoft technologies over my eleven year career thus far. In addition to being a member of our local .NET user group, TriNUG, I am also a member of the local Ruby user group Raleigh.rb. I do not speak for these organizations, but I wanted to point out my involvement with both technical communities.
In addition, my background is web-heavy with a few years of desktop development in there as well. That is to say that Rails was my introduction to the Ruby language. From the perspective of a web developer that dug Javascript before Prototype, JQuery and MooTools, Rails whet my appetite for more Ruby-like development in my paying job. I was amongst the early .NET developers that thought, “Wow, it would be great if we could use a language like Ruby with the CLR!”
In my excitement, I went out and learned about great projects like RubyCLR, John Lam’s old Ruby/CLR bridge, and Ruby.NET, the ruby compiler started by Queensland University of Technology.
Both projects had great merit. The former allows a developer to call .NET assemblies and use .NET types from Ruby (and vice-versa though painful), while the latter aimed to be a full implementation of the Ruby language atop the CLR.
I think those two projects could have adequately fulfilled my dream. More on that later.
Back to my beef. My beef is that Microsoft killed at least one of these projects.
First, they brilliantly (sans sarcasm) hired John Lam, the developer of RubyCLR. That was an excellent decision on Microsoft’s behalf. Initially, I hoped John Lam would continue his work on RubyCLR or a RubyCLR-like project with Microsoft’s resources. Unfortunately, that was not in their plans. Instead, IronRuby was started and RubyCLR died.
Secondly, the Ruby.NET project went seemingly inactive (though Open Source) after IronRuby started gaining steam. It now seems to be stuck at version 0.9 which was working with Ruby 1.8.2.
My beef is that these are two projects the .NET community needs. IronRuby will become more necessary as Microsoft convince us of such. But, IronRuby is seemingly being developed at the expense of two very good projects.
Why RubyCLR and Ruby.NET over IronRuby?
Let’s talk web. As a web developer, my opinion is that dynamic languages are better suited for the web than static languages. In fact, I may be alone in this, I assert Classic ASP with ActiveScripting fits the web development paradigm better than ASP.NET (not including MVC). My assertion is based on the ability to make a change and instantly review it by refreshing the page. This rapid feedback cycle is key to making web development most productive.
Fans of ASP.NET and static languages could make a strong argument for performance. Simply put, dynamic languages do not perform as well as static languages. However, this point is less poignant when talking about the web. Dynamic languages are “good enough” for web development. In fact, bottlenecks in web applications are usually discovered at the point of disk i/o or data access.
Wouldn’t it be great if we could optimize our disk i/o and data access code with a static language, but use a dynamic language like Ruby for the bulk of our web applications? Well, RubyCLR enabled that! If we focus on unidirectional communication be Ruby and .NET – that is Ruby code calling .NET assemblies, we’ll see that RubyCLR is the bees knees! Imagine doing your web development in Rails while being able to call .NET assemblies for things like disk i/o (I can’t imagine replacing Ruby’s ActiveRecord with a .NET ORM).
On the flipside, Ruby.NET was in the process of enabling developers that know and love Ruby to use the .NET Framework and all its libraries in a statically typed manner. This means, not only can I call .NET assemblies from Ruby, but I could write .NET assemblies in Ruby. How awesome is that? (don’t answer)
I believe Microsoft’s most underestimated contribution to developing in Ruby will be easing Rails deployment on IIS. That is the key piece to the puzzle and the metaphoric “milkshake that would bring all the boys to the yard.”
If you don’t have something nice to say…
I’ll end by saying a few good things about IronRuby and Microsoft. As a developer that uses Microsoft’s technologies, I continue to believe that Microsoft will (a) make mistakes and adjust to correct them or (b) continue to be an agent of change that brings the rest of us into the light.
With that said, IronRuby, IronPython, and the DLR are bringing capabilities to .NET development that either didn’t exist before or were a pain in the neck to implement. I haven’t really wrapped my head around doing web development with IronRuby, yet. I hope the experience will be as pleasant as doing web development with Ruby. But, the ability to add scripting to a desktop application utilizing IronPython or IronRuby is very nice.
Now, it’s your turn
I can go on and on about this topic. Those that have had this conversation with me in-person can attest to that. But, I’m really interested in how the community feels. What’s up?
Seven Habits of Highly Effective ASP.NET MVC Developers
This weekend I had the privilege of presenting two talks at the CMAP Code Camp in Central Maryland. I gave a talk on the Spark View Engine and a new talk called “Seven Habits of Highly Effective ASP.NET MVC Developers.”
Here are the slides for the latter talk:
Richmond Code Camp 2009.2
Wow! What an event!
This weekend, I joined ~400 others for the Richmond Code Camp and a good time was had. As others have noted, the hardest part of the day was choosing which talks to attend due to a schedule full of excellent topics and speakers.
I started off with Justin Etheredge’s talk on Linq Expressions. This was 75 minutes of great slides and polished demos of basic to advanced Linq concepts. I left that talk more educated and less scared of the power of Linq Expressions. Justin has an unbelievable understanding of how Linq works and an amazing ability to convey that to the layman with nothing more than a stock photo of a cat and a VM with Win 7 and VS 2010.
Second, I attended a talk that was missed from Raleigh’s Code Camp two weeks earlier. I went to John Feminella’s talk on Ruby for C# developers. John gave .NET developers a great introduction to the Ruby language using IronRuby (I thought that was brave at this point). To my surprise, John held up his end with great content and examples, and IronRuby held up its end with stability and support for most of the features of Matz Ruby (the original implementation of Ruby).
Next, I decided to checkout Open Spaces. The evening before, I jokingly suggested that the audience would convince Kevin Hazzard to present something on the DLR at Open Spaces since he was not officially presenting. Well, I guess they did! Kevin led a discussion on IronPython and the DLR that included some very nice demos. He also discussed C# 4.0′s new “Dynamic” type and how it actually works. I gained a lot of insight on when and where the DLR and Dynamic Languages on .NET are useful. And, while I love Ruby, IronPython is making the Python language very attractive to me.
Another talk that I was able to attend was by Chris Love. He talked about building quality ASP.NET applications faster. I know Chris to be a very experienced developer. He just completed an updated version of a book I found to be very practical when I was getting into more advanced ASP.NET concepts, ASP.NET 3.5 Website Programming: Problem – Design – Solution. His talk drew off of his experiences building applications and sites for his clients. He talked about architecture as well as development practices. I recommend his talk to anyone doing ASP.NET development that is looking for practical advice on how to manage it all from start to finish.
In the last time slot of the day, I presented Spark, an ASP.NET MVC View Engine, to a great audience. This was essentially the same talk that I gave a couple of weeks earlier at Raleigh’s Code Camp, but I made some modifications for the Richmond crowd. Here are the slides from that talk:
Enjoy!
Slides from Raleigh Code Camp 2009
This weekend, I had the pleasure of presenting a talk on Spark View Engine at Raleigh Code Camp (#rducc). It was a well organized event with a schedule full of great topics and presenters. The Triangle .NET User Group (TriNUG) did a wonderful job at organizing and running the event. Thanks, TriNUG!
As promised, I am posting the slides that I used in the Spark talk. Although the true context of the talk is not present on the slides, I hope these are helpful to someone using the Spark View Engine or considering it.
Stay tuned, or subscribe to the rss. I am planning to post a series of short to-the-point screencasts that demonstrate how to practically use Spark in your ASP.NET MVC application.
In the meantime, checkout http://www.dimecasts.net for some great videos on Spark.
Rails-like ASP.NET Development Assets
Here are the slides:
*Note: Sqlite ADO.NET Provider is required to run this code. You can get it from http://sqlite.phxsoftware.com/
Hello world!
Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!
Ruby-like Times method for Ints in C#
Yesterday, @mccartsc did a presentation on Linq for a group of us at work. As part of his presentation, he demonstrated an extension method he threw together to give .NET Integers the Times method that Ruby programmers have enjoyed for years.
Basically, the n.Times methods is passed a block that it will execute n number of times. In Ruby, you could do something like this:
5.times {|x| puts x }
That trivial line of code would output integers 0 through 4.
With such a trivial use case, you may be wondering “Why would anyone want to do that?” Well, @mccartsc and I had a discussion about coding without traditional For Loops. Foreach Loops are great for enumerating IEnumerable objects, but it is not a replacement for the traditional For Loop. We thought, “Wouldn’t it be great if you could use a Ruby-like Time method to execute a block of code an arbitrary number of times?” So, @mccartsc built it as part of his Linq demonstration.
Here’s how he did it:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LinqDemo
{
static class Extensions
{
public static void Each<T>(this IEnumerable<T> collection, Action<T> action)
{
foreach (var item in collection)
action(item);
}
public static IEnumerable<int> Range(this int max)
{
for (int i = 0; i < max; i++)
yield return i;
}
public static void Times(this int i, Action<int> action)
{
i.Range().Each(action);
}
}
}
@mccartsc created three extension methods to implement the Times method. “Each” is an extension method for IEnumerable types. It passes each member of a collection into an Action delegate.
“Range” is an extension method for Int types. It creates a zero-based IEnumerable collection out of an integer. For instance, 5.Range();, would return a collection consisting of integers 0,1,2,3,4.
Finally, “Times” is another extension method for Int types that allows a user to execute an action an arbitrary number of times by using the aforementioned Range and Each methods. Once I have these extension methods in my C# project, I can execute code like this:
5.Times(i => Console.WriteLine(i.ToString()));
The above would output:
0
1
2
3
4
I think that’s pretty cool.
Thanks @mccartsc for the code and the demonstration.
Update: @mccartsc got a blog! Check him out at http://scmccart.wordpress.com/.