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
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,21 @@ QuickSearch provides instant results as you type. A password entry is a match if
69
69
6. **Ignore assertion errors**:
70
70
- Ignore potential KeePass assertion errors that may occur, for example when using custom DPI scaling settings.
71
71
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:
0 commit comments