
As for how to build/run, I had a few suggestions in this blog post:
http://sourceforge.net/p/baseditnet/blo ... -the-code/
The path I chose was the free-version of Visual Basic 2010 (Express version = free).
The download-size wasn't too prohibitive (maybe a few hundred megs

After it installs, just open up the project within the IDE and press F5 key, which will automatically do any re-builds (if you edited any files), and will run the program.
The IDE is fairly nice and friendly, able to add breakpoints and step through code, code-completion suggestions as you type keywords/function-names.
But if you're more of a keyboard junkie that shuns pretty IDEs (;)), perhaps there is a path in that direction too. I'm thinking it would require an install of just the .NET 3.5 SDK, which comes with the "MSBUILD.EXE" compiler/builder.
So then you could build it with something like this:
c:\Windows\Microsoft.NET\Framework\v3.5\MSBuild.exe BasEdit.sln /p:Configuration=Release
or:
c:\Windows\Microsoft.NET\Framework\v3.5\MSBuild.exe BasEdit.sln /p:Configuration=Debug