Today I Want to Share Daily Updated PCSX2.
PCSX2 0.9.9 r4948 Free Completed With Prefered Plugin. I Has Few Fix Like: cmake: allow to easily set global compilation flags
Ok Enough Explanations Let's Just Download And Try It!
Download:
Visual C++ 2010 (x86) runtime package (Must Be Installed) Click Here
Bios Click Here
Today I Want to Share Daily Updated PCSX2.
PCSX2 0.9.9 r4947 Free Completed With Prefered Plugin. I Has Few Fix Like: Change a few compiler options in Linux to remove a few warnings during compilation.
Ok Enough Explanations Let's Just Download And Try It!
I got this error yesterday while
running FxCop application from Microsoft. I think the problem was
because of the .Net framework installed on my machine, I have only .Net
4.0 installed and no other versions of .Net. And I think FxCop was
expecting .Net 2.0 in the system.
After
few searches I found the resolution for this issue. You can add
supportedRuntime tag to the application config (It will be like
ApplicationName.exe.config in the same folder where application
installed.) file, under startup tag, and set the attribute of the
supportedRuntime as the version of the .Net Framework installed in the
system.
Open Note Pad And Enter This Code:
<startup>
<supportedRuntimeversion="v4.0.30319"/>
</startup>
After That Save And Give Name Like The Application Name
ApplicationName.exe.config
Example, I Want To Open Linkbucks Superior From Ubers.org
linkbuckssuperior.exe.config
Edited: New Code For Fixing This Issues Is Here: <configuration>
<startup>
<supportedRuntime version="your current installed framework"/>
<supportedRuntime version="your current installed framework"/>
</startup>
</configuration>
Example: I have Installed .Net Framework 4, So Here Is The Code:
<configuration>
<startup>
<supportedRuntime version="v4.0.30319"/>
<supportedRuntime version="v4.0.30319"/>
</startup>
</configuration>
Hope You Could Configure It Ur Self Or You Could Ask Me To Make This Cofig By Comment