Skip to content

Build Deploy

damiancosmoschapman edited this page Oct 16, 2023 · 5 revisions

The build and deploy setup for the C# code has changed from version 5.7.x to 6.0.0.

When you build or deploy there is a dependency on the Solution configurations in Visual Studio.

For example if you want to build Test, choose the Test Solution in Visual Studion and the Test build will be built in the bin/Test/net6.0. This build will have all of the configuration files needed to run the Test build. i.e. appSettings.json, log4net.xml and web.config. These files will contain the correct settings for the Test environment.

The table shows the different build locations for the different environments based on their Solution configuration.

Environment Solution configuration Build Location
Debug Debug bin/net6.0
Demo Demo bin/Demo/net6.0
Dev Dev bin/Dev/net6.0
Live Live bin/Live/net6.0
Test Test bin/Test/net6.0
UAT UAT bin/UAT/net6.0
Clone this wiki locally