Change the .NET Frameworks application

0

I developed an app in C # using sqlite. But when compiling and installing on another computer running OS XP, I came across the following error:

  

CreateProcess failed cod. 193% 1 is not a valid win32 application

When searching google, I could verify that the problem would be in the .NET Framework that was developed in version 4.5. I changed to 3.0, but it did conflict when running directly through my 2013 VS, showing some Linq errors, etc. ) My computer is the Windows 8 OS.

Is there another way to make this change to work in XP?

Thank you

    
asked by anonymous 20.08.2015 / 16:17

1 answer

1

Linq was introduced in version 3.5 of .Net! Try to port your application to this version of the framework, which is also compatible with WinXP.

    
20.08.2015 / 16:37