I developed a small C # console application (TextMatcher.exe) on my local development machine, and now you need to deploy it in a live environment. It refers to another class library that I developed, which has common functions that I intend to use and improve in future console applications.
Ultimately, this particular application will be run from the SSIS package, but for now, I'm just trying to run it from cmd.
I do not understand you that this is the actual result of the program:
E:/TextMatcher>TextMatcher.exe
No
E:/TextMatcher>
the computer literally says “No” and does not provide additional information. I have not included anywhere in the program to display the word "No", for any failure or otherwise.
Of course, it works fine locally. I also included the DLL in the utility class library. I read other questions ( here , here ) on how to deploy console applications correctly, and after the tip.
NB: This is also very difficult for Google because using the word “No” is fundamental to the problem ...
EDIT - it seems to be working now ... I just copied the files again from my local machine to the remote machine ... I try to make it crash again so that I can understand what happened on Earth and until I do I won’t accept the answer so that people can shed some light on it. In any case, this is rather perplexing.
source
share