benrhughes / todotxt.net

An implementation of todo.txt for Windows using the .NET framework
http://benrhughes.github.io/todotxt.net/
Other
500 stars 123 forks source link

newbie question - how do I compile portable version? #404

Closed fleapower closed 2 years ago

fleapower commented 4 years ago

As the subject line says, I am a complete newb when it comes to using Visual Studio. I figured out how to make some changes to the code to customize it for my use, and I've been able to compile it, but it compiles as the non-portable version. How do I compile it as the portable version? Thanks!

jdckr commented 4 years ago

You need to call msbuild.exe like here https://github.com/benrhughes/todotxt.net/blob/e4c0c762be15ebbd20f10f63059c7193f28e3fc2/Installer/Create-Installer.bat#L1

If you just need the portable version you might want to remove the CreateSetup step, as this requires additional dependencies https://github.com/benrhughes/todotxt.net/blob/e4c0c762be15ebbd20f10f63059c7193f28e3fc2/Installer/Build.xml#L21

fleapower commented 4 years ago

Thanks!