You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,15 +23,15 @@ cd GitContentSearch
23
23
**Build the application**:
24
24
25
25
```bash
26
-
dotnet build
26
+
dotnet publish -c Release
27
27
```
28
28
29
29
**Add the executable folder to your PATH environment variable**
30
30
31
31
After building the application, you will want to add the folder containing the GitContentSearch.exe (or equivalent for your operating system) to your PATH environment variable. This allows you to run the tool from any directory in your command line.
32
32
33
33
* On Windows:
34
-
* Find the folder where the executable is located, typically in the bin/Debug/netX.X directory inside the project folder.
34
+
* Find the folder where the executable is located, typically in the bin/Release/netX.X/publish directory inside the project folder.
35
35
* Open the System Properties and go to Environment Variables.
36
36
* In the System variables section, find the Path variable and click Edit.
37
37
* Add the full path to the folder containing the executable.
@@ -45,7 +45,7 @@ After building the application, you will want to add the folder containing the G
45
45
46
46
* Add the following line to include the folder in your PATH:
0 commit comments