Skip to content

Commit 2f46474

Browse files
committed
add developer infos
1 parent 5a9a762 commit 2f46474

1 file changed

Lines changed: 15 additions & 1 deletion

File tree

Readme.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,21 @@ QuickSearch provides instant results as you type. A password entry is a match if
6969
6. **Ignore assertion errors**:
7070
- Ignore potential KeePass assertion errors that may occur, for example when using custom DPI scaling settings.
7171
72-
You can skip step 3 by adding the following as a pre-build event: `if "$(BuildingInsideVisualStudio)" == "true" "$(MSBuildBinPath)\msbuild.exe" "$(SolutionDir)QuickSearch.csproj" /p:Configuration=$(Configuration)` and the following as the post-build event: `del /s /q "$(ProjectDir)obj\*.*"` to the Build Events of the KeePass project.
72+
You can skip step 3 by adding the following to the Build Events of the KeePass project. Pre-build event:
73+
```bat
74+
if "$(BuildingInsideVisualStudio)" == "true" "$(MSBuildBinPath)\msbuild.exe" "$(SolutionDir)QuickSearch.csproj" /p:Configuration=$(Configuration)
75+
```
76+
Post-build event:
77+
```bat
78+
del /s /q "$(ProjectDir)obj\*.*"
79+
```
80+
81+
You can skip step 6 by adding the following at the start of Main() of KeePass:
82+
```c#
83+
#if DEBUG
84+
Debug.Listeners.Clear();
85+
#endif
86+
```
7387

7488
## Changelog
7589
### [v2.43](../../releases/tag/2.43)

0 commit comments

Comments
 (0)