I read the info at http://www.opendental.com/manual/sourcecode.html
it says
I found my sgen.exe.config file in C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin since it is 64bit. The file was write protected, so I unprotected it, changed the file to the above specifications and tried to build again.Error: Mixed mode assembly etc. We have already altered the app.config file for the Open Dental project to handle one of these errors. If you look closely at the remaining error, the filename is SGEN, which is an MS exe that generates a serialization assembly. The quick fix for this error is to right click the OD project, properties, build tab, and at the bottom, change 'generate serialization assembly' to off. This will, however, result in Open Dental running a little slower. A better fix is to find the sgen.exe, for example at "C:\Program Files\Microsoft SDKs\Windows\v7.0A\bin\NETFX 4.0 Tools\sgen.exe. Once you find it, create (or possibly alter) an sgen.exe.config to look like this:
<?xml version ="1.0"?>
<configuration>
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0.30319"/>
</startup>
</configuration>
There was no change and I still got the same error: (need to write protect it again? I will try that...)
Error 33 Mixed mode assembly is built against version 'v1.1.4322' of the runtime and cannot be loaded in the 4.0 runtime without additional configuration information. C:\svn\beta\OpenDental\SGEN OpenDental
I am also getting 2 other errors that I have never seen before:
Error 35 Application Configuration file "app.config" is invalid. Could not find file 'C:\svn\beta\ServiceManager\app.config'. C:\svn\beta\ServiceManager\app.config ServiceManager
Is this a missing file from the SVN?
Error 31 Metadata file 'C:\svn\beta\OpenDental\bin\Release\OpenDental.exe' could not be found TestCanada
Is this just because of the other errors and the file is not yet built i suppose?
Using Visual Studio 2010 Pro