1
Tips & Tricks / Re: Using C#
« on: November 18, 2016, 12:11:24 PM »Simple. You set up your development machine like this:
MyProject\AdvancedHMI
then you commit your project to your source code control system. Now anyone can pull that code from the repo, build, and they will get the same output files on any machine and can deploy to the target machine in the same manner. Need to make a change? Pull from repo, build new exe and xcopy to target.
I know it is common to have your complete build environment on the target machine but this may not always be feasible, possible, etc. I work in the highly regulated medical device industry and if you had the build tools and source codes on your target machine, where anyone could walk up and make changes to a validated piece of production equipment, that could get you shut down.
Same thing if the target machine dies, you need to have documentation on how to reproduce the system.
See: http://advancedhmi.com/forum/index.php?topic=1402.msg7606#msg7606
In short:
The licensing also requires distribution of the complete solution source code to the end user.
In other words: if you don't distribute the full source code with your product, you are violating the license. They claim the reason for that is because if in the future an engineer wants to modify the program, they can immediately do so. I proposed that that article of the license be reviewed and maybe changed to something like "must give credit". But it is ultimately the author's choice and we must respect that - he is the one that put in all the hours to develop this project and decided to open source it!