Reputation: 2611
I have written a software in C#.NET using Visual Studio. After all, I made a setup file and gave it to some people to install on their systems and use. The problem is in here: they run the software on their systems and get some errors while they are working with the software. there is no way for me to understand what the problem is for?
For example, if I get the error on my own system I can easily use the visual studio to debug the code and find the source of errors. But for others, currently, I have to connect to their systems remotely using software like Teamviewer, upload my code somewhere and once I connected to them, download the code from their system. Run the visual studio on their system and then open my project there and finally debug the project.
It does work. However it seems to me that it is not the best possible way to do such a work. (because, for instance, I have to download my project from their system and they can access my source code.)
Is there any other solution for running a project on the remote machine in order to debug the project?
Upvotes: 1
Views: 976
Reputation: 930
Try using the Visual Studio Remote Debugger - it is found in the VS installation DVD, and what you have to do with it is:
This way you do not have to install or download code to the client machine. I hope this helps.
Upvotes: 2