Files
HkVisionPro/HkVisionPro.App/App.config
2026-03-25 14:04:24 +08:00

50 lines
3.0 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<!--启动服务形式(0代表默认系统服务, 1代表exe方式启动)-->
<add key="StartServerByExe" value="0" />
<!--服务绝对路径,用于拉起服务(value为""时默认拉起系统服务value为服务路径时为以进程方式启动)-->
<add key="ServerPath" value=""/>
<!--画面渲染使用的图像输出名称(默认 ImageData0来自流程输出设置-->
<add key="RenderImageOutputName" value="ImageData" />
<!--画面渲染使用的主 ROI 输出名称(默认 InputR1来自流程输出设置-->
<add key="RenderRoiOutputName" value="InputR1" />
<!--画面渲染使用的次 ROI 输出名称(默认 InputR2来自流程输出设置-->
<add key="RenderRoiOutputName2" value="InputR2" />
<!--画面渲染使用的第1个判定整型输出名称默认 Result1-->
<add key="RenderResultIntOutputName1" value="Result1" />
<!--画面渲染使用的第2个判定整型输出名称默认 Result2-->
<add key="RenderResultIntOutputName2" value="Result2" />
<!--自动装配:方案加载后是否自动启动 A/B/C 状态机流程-->
<add key="AutoRunEnabledAfterSolutionLoaded" value="false" />
<!--自动装配A/B/C 三层流程名称(需与 VisionMaster 方案中的流程名一致)-->
<add key="AutoRunProcedureAName" value="A-Layer" />
<add key="AutoRunProcedureBName" value="B-Layer" />
<add key="AutoRunProcedureCName" value="C-Layer" />
<!--自动装配:优先使用双整型输出做 OK 判定Result1=1 且 Result2=1 才表示 OK-->
<add key="AutoRunOkIntOutputName" value="Result1" />
<add key="AutoRunOkIntOutputName2" value="Result2" />
<add key="AutoRunOkIntValue" value="1" />
<!--自动装配:连续 OK 维持时长(毫秒),达到后切入下一层流程-->
<add key="AutoRunStableMilliseconds" value="2000" />
<!--<add key="ServerPath" value="E:\Program Files\VisionMaster\VisionMaster4.1.0\Applications\Server\VisionMasterServer.exe"/>-->
<add key="ClientSettingsProvider.ServiceUri" value="" />
</appSettings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
<system.web>
<membership defaultProvider="ClientAuthenticationMembershipProvider">
<providers>
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
</providers>
</membership>
<roleManager defaultProvider="ClientRoleProvider" enabled="true">
<providers>
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
</providers>
</roleManager>
</system.web>
</configuration>