Wiki source code of getting-started

Version 44.1 by Marco Munnik on 2025/10/01 10:43

Show last authors
1 Hi Team
2
3
4 When you open the projects from the new locations you might have to fix some of the references due to the folder structures changing ie code is not under a "Development" folder as it now is branch based. This can be done by editing the csproj directly or doing a search and replace with the new paths where applicable, alternatively you can remove the old references via IDE and relink to new paths **do not link to old paths on your machine**​.
5
6 **Prerequisites**
7
8 1. Install [[WinMerge>>https://winmerge.org/]]
9 11. winget install -e ~-~-id WinMerge.WinMerge
10 1. Install [[Notepad++>>https://notepad-plus-plus.org/]]
11 11. winget install -e ~-~-id Notepad++.Notepad++
12 1. Install [[VisualStudio 2022>>https://visualstudio.microsoft.com/vs/]]
13 11. winget install -e ~-~-id Microsoft.VisualStudio.2022.Professional
14 1. Install [[VisualStudio Code>>https://code.visualstudio.com/Download]]
15 11. winget install -e ~-~-id Microsoft.VisualStudioCode
16 1. Install [[Wix Toolset>>https://github.com/wixtoolset/wix3/releases/tag/wix3112rtm]]
17 11. winget install -e ~-~-id=WiXToolset.WiXToolset
18
19 **Extensions**
20
21 1. Wix v3 - Visual Studio 2022 Extension
22 1. Microsoft Visual Studio Installer Projects 2022
23 1. Web Compiler 2022+
24
25 **Source control installation**
26
27 1. Install [[Git for Windows>>doc:technical-documentation.Source Control.client-tools.git-for-windows.WebHome]]
28 11. winget install -e ~-~-id "Git.Git"
29 1. Install [[tortoisegit>>doc:technical-documentation.Source Control.client-tools.tortoisegit.WebHome]]
30 11. winget install -e ~-~-id TortoiseGit.TortoiseGit
31 1. Setup the [[nuget>>doc:technical-documentation.Source Control.client-tools.nuget-feed.WebHome]] feed
32
33 Also while we in the transition phase it might be helpful to add this link via this command:
34
35 >mklink /D c:\dev\src\Packages C:\dev\Packages
36
37 (% style="font-size:18px" %)clone to here: C:\dev\ebsphere\migration\
38
39
40 [[image:1657115475686-934.png]]
41
42
43
44 The URL's for different repositories to clone is as follows:
45
46 [[image:image-20240207124136-3.png]]
47
48 ~-~-> Application Source Code
49
50 [[image:1657115603808-846.png]]
51
52
53 [[image:1657115842929-756.png]]
54
55 For reference attached is the mappings of the new folders from old folders.
56
57
58 If you want to start making changes follow the following process:
59
60
61 1. (((
62 Right click the migration folder and create a new branch via the TortoiseGit menu
63
64
65 1. [[image:image-20220706143954-1.png]]
66 )))
67 1. specify branch name follow this pattern for now (names cannot have spaces use dashes -):
68
69 1. feature/il-12345
70 11. if it is issue log related you can add a -short-description if needed
71 11. 12345 = replace with issue log number
72 1. feature/12345
73 11. if it is azure task related
74 11. 12345 = replace with az workitem number
75 1. feature/short-description
76 11. if it has no work item associated to it
77
78 1. make sure you select branch = master and switch to new branch is checked
79 11. [[image:image-20220706143954-2.png]]
80
81 As mentioned Friday if there is a piece of new code that has sync over yet and you need it, merge it over on your end with something like winmerge //once you have created a feature branch//.
82
83 As always please reach out if you get stuck.