Search code examples
console-applicationworkerenterprise-web-library

How do I configure a Server-Side Console Project in EWL?


I know I have to define this section in Development.xml:

<serverSideConsoleProjects>
    <project>
        <Name>Program</Name>
        <AssemblyName>Assembly</AssemblyName>
    </project>
</serverSideConsoleProjects>

Do I have to do anything else? What effect does this actually have on the solution or on any of the Package Manager Console operations?


Solution

  • Essentially, declaring a server-side console project causes that project's build output to be included in the Logic Packages folder that gets created in your solution folder by the ExportLogic console operation. To my knowledge there is nothing else that EWL does right now with these projects.