Like others, I'm having an issue with a simple console application that reads records from our database.
This small program needs to sit on our file server. It reads new records and forwards a summary off to the parent company.
This is going to be a scheduled task that runs every X minutes.
I do NOT want an Installer, because I don't want the server to require a reboot.
From the screenshot, notice I have almost all versions of the framework already installed and that the debug information is copied into the program folder.
This is the debug version of the program, but no other debug information is being output to the window.
I have tried building at 2.0, 3.5, and 4.0. All versions give me the same error message.
[UPDATE]: wal asked in a comment for
<?xml version="1.0"?>
<configuration>
<startup>
<supportedRuntime version="v2.0.50727"/></startup>
</configuration>
This is a console app, so that is literally the entire app.config
file. I am typically clueless when it comes to these .config settings; however, I seem to feel like I have a handle on this one! :)