views:

42

answers:

1

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?

+4  A: 

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"
Mehrdad Afshari
".\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
@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
Excellent, thanks!
Adam Tuttle