diff --git a/PrepareVersion.cmd b/PrepareVersion.cmd
new file mode 100644
index 00000000..91619c22
--- /dev/null
+++ b/PrepareVersion.cmd
@@ -0,0 +1,15 @@
+xcopy /Y Release\Win32\EasyHook32.dll ..\publish\EasyHook32.dll
+xcopy /Y Release\Win32\ProfilerCore32.dll ..\publish\ProfilerCore32.dll
+xcopy /Y Release\Win32\ProfilerCore32.lib ..\publish\ProfilerCore32.lib
+xcopy /Y Release\Win32\ProfilerCore32.pdb ..\publish\ProfilerCore32.pdb
+xcopy /Y Release\Win32\ProfilerTest32.exe ..\publish\ProfilerTest32.exe
+xcopy /Y Release\Win32\ProfilerTest32.pdb ..\publish\ProfilerTest32.pdb
+xcopy /Y Release\x64\EasyHook64.dll ..\publish\EasyHook64.dll
+xcopy /Y Release\x64\ProfilerCore64.dll ..\publish\ProfilerCore64.dll
+xcopy /Y Release\x64\ProfilerCore64.lib ..\publish\ProfilerCore64.lib
+xcopy /Y Release\x64\ProfilerCore64.pdb ..\publish\ProfilerCore64.pdb
+xcopy /Y Release\x64\ProfilerTest64.exe ..\publish\ProfilerTest64.exe
+xcopy /Y Release\x64\ProfilerTest64.pdb ..\publish\ProfilerTest64.pdb
+xcopy /Y Release\x64\Brofiler.exe ..\publish\Brofiler.exe
+xcopy /Y ProfilerCore\Brofiler.h ..\publish\Brofiler.h
+
diff --git a/ProfilerCore/Profiler.h b/ProfilerCore/Brofiler.h
similarity index 100%
rename from ProfilerCore/Profiler.h
rename to ProfilerCore/Brofiler.h
diff --git a/ProfilerCore/Common.h b/ProfilerCore/Common.h
index 4a7e9dcc..b30686a3 100644
--- a/ProfilerCore/Common.h
+++ b/ProfilerCore/Common.h
@@ -1,6 +1,6 @@
#pragma once
#include "Types.h"
-#include "Profiler.h"
+#include "Brofiler.h"
// MEMORY //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#define BRO_CACHE_LINE_SIZE 64
diff --git a/ProfilerCore/ProfilerCore.vcxproj b/ProfilerCore/ProfilerCore.vcxproj
index 205d95da..795da72a 100644
--- a/ProfilerCore/ProfilerCore.vcxproj
+++ b/ProfilerCore/ProfilerCore.vcxproj
@@ -321,7 +321,7 @@
-
+
diff --git a/ProfilerCore/ProfilerCore.vcxproj.filters b/ProfilerCore/ProfilerCore.vcxproj.filters
index 2eb0c8c0..fb49c818 100644
--- a/ProfilerCore/ProfilerCore.vcxproj.filters
+++ b/ProfilerCore/ProfilerCore.vcxproj.filters
@@ -27,9 +27,6 @@
-
- API
-
Tools
@@ -53,6 +50,9 @@
Tools
+
+ API
+
diff --git a/ProfilerTest/TestEngine.cpp b/ProfilerTest/TestEngine.cpp
index 459cc880..49311e85 100644
--- a/ProfilerTest/TestEngine.cpp
+++ b/ProfilerTest/TestEngine.cpp
@@ -1,6 +1,6 @@
#include "TestEngine.h"
#include "..\ProfilerCore\Types.h"
-#include "..\ProfilerCore\Profiler.h"
+#include "..\ProfilerCore\Brofiler.h"
#include
#include