diff --git a/.gitignore b/.gitignore
index 2639617e..055395c1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -28,3 +28,6 @@ lib/res
*.a
dlangui-test-default
.vscode
+*.exe
+*.pdb
+dlangui.lib
diff --git a/examples/example2/example2.visualdproj b/examples/example2/example2.visualdproj
deleted file mode 100644
index 8c10f1a3..00000000
--- a/examples/example2/example2.visualdproj
+++ /dev/null
@@ -1,194 +0,0 @@
-
- {4B9651D1-BF43-47BD-9FA4-B1DAF9E7197D}
-
- 0
- 0
- 0
- 2
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 2.043
- 0
- 0
- 0
- $(DMDInstallDir)windows\bin\dmd.exe
-
-
- $(ConfigurationName)
- $(OutDir)
-
-
- 0
-
-
-
-
- 0
-
-
- 1
- $(IntDir)\$(TargetName).json
- 0
-
- 0
-
- 0
- 0
- 0
-
-
-
- 0
-
- 1
- $(VisualDInstallDir)cv2pdb\cv2pdb.exe
- 0
- 0
- 0
-
-
-
- ole32.lib kernel32.lib user32.lib comctl32.lib comdlg32.lib
-
-
-
- $(OutDir)\$(ProjectName).exe
- 1
-
-
-
- *.obj;*.cmd;*.build;*.json;*.dep
-
-
- 0
- 0
- 0
- 2
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 2.043
- 0
- 0
- 0
- $(DMDInstallDir)windows\bin\dmd.exe
-
-
- $(ConfigurationName)
- $(OutDir)
-
-
- 0
-
-
-
-
- 0
-
-
- 1
- $(IntDir)\$(TargetName).json
- 0
-
- 0
-
- 0
- 0
- 0
-
-
-
- 0
-
- 0
- $(VisualDInstallDir)cv2pdb\cv2pdb.exe
- 0
- 0
- 0
-
-
-
- ole32.lib kernel32.lib user32.lib comctl32.lib comdlg32.lib
-
-
-
- $(OutDir)\$(ProjectName).exe
- 1
-
-
-
- *.obj;*.cmd;*.build;*.json;*.dep
-
-
-
-
-
diff --git a/examples/example2/winmain.d b/examples/example2/winmain.d
deleted file mode 100644
index 08fe63e7..00000000
--- a/examples/example2/winmain.d
+++ /dev/null
@@ -1,33 +0,0 @@
-module winmain;
-
-import core.runtime;
-import core.sys.windows.windows;
-
-extern (Windows)
-int WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
-{
- int result;
-
- try
- {
- Runtime.initialize();
-
- result = myWinMain(hInstance, hPrevInstance, lpCmdLine, nCmdShow);
-
- Runtime.terminate();
- }
- catch (Throwable o) // catch any uncaught exceptions
- {
- MessageBoxA(null, cast(char *)o.toString(), "Error", MB_OK | MB_ICONEXCLAMATION);
- result = 0; // failed
- }
-
- return result;
-}
-
-int myWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
-{
- /* ... insert user code here ... */
- throw new Exception("not implemented");
- return 0;
-}
diff --git a/examples/test/main.d b/examples/test/main.d
deleted file mode 100644
index d30feaf4..00000000
--- a/examples/test/main.d
+++ /dev/null
@@ -1,24 +0,0 @@
-module main;
-
-struct Foo // must be struct to reproduce
-{
- uint foo; // any data can be here
-}
-
-struct Bar // must be struct to reproduce
-{
- // DMD 2.065 hang with 100% CPU load
- // works ok if array size is reduced
- //Foo[0x20000] _array;
- // 0x4000 - < 1 second
- // 0x8000 - 5 seconds
- // 0xC000 - 15 seconds
- // 0xE000 - 20 seconds
- // 0x10000 - 25 seconds
- // 0x20000 - 1:45
-}
-
-int main(string[] argv)
-{
- return 0;
-}
diff --git a/examples/test/test.visualdproj b/examples/test/test.visualdproj
deleted file mode 100644
index 26cbd549..00000000
--- a/examples/test/test.visualdproj
+++ /dev/null
@@ -1,11 +0,0 @@
-
- be84df39-64e6-449d-89e0-8e92404003cb
-
-
-
-
-
-
-
-
-