How can I disable VI_UserRegistration_Web

How can I disable the web project.

We are not using it, but we are compiling it a lot?

  • Hi,

    You can tell the compiler which projects to select using the following:

    Configure DBCompiler to exclude/include web projects

    You can configure the webprojects using the DbCompiler.exe.config

    Here is a snippet which I used in 8.0.x

    <?xml version="1.0"?>

    <configuration>                 

    <appSettings>          

    <add key="WebProjectCompilationPreset" value="VI_StandardWeb=DEBUG,RELEASE;DEMO_DemoWeb=DEBUG,RELEASE;VI_UserRegistration_Web=DEBUG,RELEASE;UCI_Web=DEBUG,RELEASE;All=" />   

    </appSettings>

    </configuration>  

    To make this work for Designer.exe.config add the above just before the </configuration> tag at the end.

    So if you DON'T mention VI_UserRegistration_Web in the value string it won't be selected for compile by default.

    HTH, Barry.

  • Thanks Barry!!!

    I had hoped, for a ConfigParm, a flag / extension on DialogAEDS or anything I could configure system wide. I leave this question open for a while, to see if someone else knows how to do that.

    Otherwise I will go with the config file as you suggested and the software loader to distribute it.

    Let's see if I have to add that to my todo list for updates, I guess it will be gone like my nlog.config :-/