HuarayVMDemo.exe.config 863 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <startup>
  4. <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
  5. </startup>
  6. <appSettings>
  7. <!-- 是否通过Exe启动VM服务(true=通过Exe启动, false=通过服务启动) -->
  8. <add key="StartServerByExe" value="true" />
  9. <!-- VM服务程序路径 -->
  10. <add key="ServerPath" value="C:\Program Files\VisionMaster4.4.0\PlatformDemoCS\CSharp\VisionMasterDemo.exe" />
  11. </appSettings>
  12. <runtime>
  13. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  14. <dependentAssembly>
  15. <assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
  16. <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
  17. </dependentAssembly>
  18. </assemblyBinding>
  19. </runtime>
  20. </configuration>