I'd like to use Markdown# in a project I'm working on (Not a .Net project, but I have the ability to instantiate .Net class libraries and use them natively). Unfortunately I haven't been able to find a pre-compiled Markdown# DLL.

I'd really rather not install Visual Studio just for the purpose of compiling the project.

Are there DLL download links somewhere that I'm just missing?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

You don't need Visual Studio. Just run msbuild which comes with the .NET Framework on the solution file.

Open up a command prompt, switch to the MarkdownSharp directory, and run msbuild:

"C:\Windows\Microsoft.NET\Framework\v3.5\MSBuild.exe"
link|improve this answer
".\MarkdownSharp.sln(2): Solution file error MSB5014: File format version is not recognized. MSBuild can only read solution files between versions 7.0 and 9.0, inclusive." – Adam Tuttle Feb 9 '10 at 19:52
@Adam: You'll have to run the newer msbuild. I just copy pasted a sample path. Replace the version number with 3.5. – Mehrdad Afshari Feb 9 '10 at 19:57
Excellent, thanks! – Adam Tuttle Feb 9 '10 at 20:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.