View Single Post
  #25  
Old 04-22-2011, 10:32 PM
Jwam Jwam is offline
Approved Member
 
Join Date: Apr 2011
Posts: 51
Default

When launching the beta patched server, I had an error to activate the loadFromRemoteSources switch.

I had to add the bold part of the code in Launcher.exe.config to be able to launch the server again.

Code:
  <runtime>
    <loadFromRemoteSources enabled="true" />
    <gcConcurrent enabled="true" />
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <publisherPolicy apply="yes" />
      <probing privatePath="parts/core;parts/bob" />
    </assemblyBinding>
  </runtime>
Reply With Quote