The Artima Developer Community
Sponsored Link

.NET Buzz Forum
Snippet Compiler

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Tim Sneath

Posts: 395
Nickname: timsneath
Registered: Aug, 2003

Tim Sneath is a .NET developer for Microsoft in the UK.
Snippet Compiler Posted: Sep 9, 2003 8:43 AM
Reply to this message Reply

This post originated from an RSS feed registered with .NET Buzz by Tim Sneath.
Original Post: Snippet Compiler
Feed Title: Tim Sneath's Blog
Feed URL: /msdnerror.htm?aspxerrorpath=/tims/Rss.aspx
Feed Description: Random mumblings on Microsoft, .NET, and other topics.
Latest .NET Buzz Posts
Latest .NET Buzz Posts by Tim Sneath
Latest Posts From Tim Sneath's Blog

Advertisement

I regularly find myself opening Visual Studio .NET and creating a whole solution / project structure purely in order to test or demonstrate a couple of lines of code. Don't get me wrong - Visual Studio .NET is great, but it's overblown for doing this stuff.

For a while, I've been using a short hand-crafted batch file that opens a minimal version of VS.NET when passed a file as a parameter:

--- begin e.cmd ---
@echo off
if not exist %1 copy /y nul %1 > nul
devenv /mdi %1
--- end e.cmd ---

This works well, but I've found a better solution: Snippet Compiler. This is a little app that combines a simple colour-coded text editor (borrowed from SharpDevelop), an errors / output window, and hardcoded support for C# and VB compilers. Even neater is that it supports ASP.NET well. There's a screen shot at the website if you want to see what the UI looks like.

Perfect for those short demos where you don't need to highlight VS.NET but simply need to show or test something in the Framework, and saves your directories getting cluttered up with five files where one will do. The only missing feature is support for different code window fonts and sizes before I can use it before a large audience.

Look forward to seeing this one develop over time.

Read: Snippet Compiler

Topic: More About DataSets and Interop Previous Topic   Next Topic Topic: Feed Validator has moved

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use