Click here to Skip to main content
15,886,724 members
Articles / Programming Languages / C#

Simple SVG Editor

Rate me:
Please Sign up or sign in to vote.
4.38/5 (18 votes)
18 Sep 2007CPOL1 min read 168K   12.6K   92  
This application is a combination of two projects from The Code Project: DrawTools by Alex Fry and SVGPad by Maurizio Bigoloni
mkdir .\bin
mkdir .\bin\debug
del .\bin\debug\*.* /Q
csc /target:library /out:./bin\debug\SVGLib.dll /warn:0 /nologo /debug *.cs
mkdir .\bin\release
del .\relase\*.* /Q
csc /target:library /out:.\bin\release\SVGLib.dll /warn:0 /nologo /optimize *.cs

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Russian Federation Russian Federation
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions