Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

From the Solution window,

  • select Select “Set Startup Project”:

...

  • select Projects…” from the right-click menu.

  • Select “Multiple startup projects” and set the “Start” action for the following projects:

    • LEIS.Business.Server.Host.Test

    • LEIS.Business.Web

    • LEIS.Security.Host.Test

    • LEIS.Security.Web

...

Install the Microsoft Visual Studio Installer Projects Extension from the Manage Extensions window:

...

  • Create a folder named CLF on your C:\ drive.

  • Install StreamTagFilterSetup

  • Install CLFPagePluginSetup

  • Install TC Mailer 3.0 Installer

  • Copy the style templates to the CLF folder on your computer, templates are located here: \\ncrws523\Software\New Dev Setup Software\Templates

  • Navigate to your local code on your computer file system and find the .vs folder inside the Development folder (.vs folders are sometimes hidden by default). Then find the applicationhost.config file.

  • open Open the applicationhost.config file with notepad and add the two “StreamTagFilter” lines of code in the <location path="" overrideMode="Allow"><system.webServer><modules> node.

    • Code Block
      languagexml
                  <add name="StreamTagFilter-2.0" type="Utility.IIS.StreamTagFilterModule, StreamTagFilter.NET.2.0, Version=1.0.6.2, Culture=neutral, PublicKeyToken=d3d707ec692e4024" preCondition="runtimeVersionv2.0" />
                  <add name="StreamTagFilter-4.0" type="Utility.IIS.StreamTagFilterModule, StreamTagFilter.NET.4.0, Version=1.0.6.2, Culture=neutral, PublicKeyToken=d3d707ec692e4024" preCondition="runtimeVersionv4.0" />
  • By default, the development branch is configured to run on the localhost with an internal user and points to the development database. To run the application locally as an internal user, refer to this page to create your user if you don’t have one yet: Creating an Internal User .

  • Once your user is created, navigate to the DebugHttpModule.cs file in:

    • \Development\LEIS.Business.Web\Support\DebugHttpModule.cs

    • \Development\LEIS.Security.Web\Support\DebugHttpModule.cs

...

  • Replace the value "TCUSERID" with your internal user TC id to run the application locally.

...

Start the application in Debug mode.

...