diff --git a/build/MSICALib-10.0.vcxproj.filters b/build/MSICALib-10.0.vcxproj.filters
index 269a1c3..27f8e2b 100644
--- a/build/MSICALib-10.0.vcxproj.filters
+++ b/build/MSICALib-10.0.vcxproj.filters
@@ -20,7 +20,7 @@
Source Files
-
+
Source Files
@@ -40,7 +40,7 @@
Header Files
-
+
Header Files
diff --git a/build/MSICALib-15.0.vcxproj.filters b/build/MSICALib-15.0.vcxproj.filters
index 86c100c..fa60c8d 100644
--- a/build/MSICALib-15.0.vcxproj.filters
+++ b/build/MSICALib-15.0.vcxproj.filters
@@ -20,7 +20,7 @@
Source Files
-
+
Source Files
@@ -40,7 +40,7 @@
Header Files
-
+
Header Files
diff --git a/build/MSICALib-16.0.vcxproj.filters b/build/MSICALib-16.0.vcxproj.filters
index 86c100c..fa60c8d 100644
--- a/build/MSICALib-16.0.vcxproj.filters
+++ b/build/MSICALib-16.0.vcxproj.filters
@@ -20,7 +20,7 @@
Source Files
-
+
Source Files
@@ -40,7 +40,7 @@
Header Files
-
+
Header Files
diff --git a/build/MSICALib.props b/build/MSICALib.props
index e415d28..c44db75 100644
--- a/build/MSICALib.props
+++ b/build/MSICALib.props
@@ -1,21 +1,21 @@
-
@@ -38,7 +38,7 @@
..\include;..\..\WinStd\include;%(AdditionalIncludeDirectories)
Use
- stdafx.h
+ pch.h
false
@@ -52,12 +52,12 @@
-
+
Create
-
+
\ No newline at end of file
diff --git a/src/MSICALib.cpp b/src/MSICALib.cpp
index 328e60d..31ea54a 100644
--- a/src/MSICALib.cpp
+++ b/src/MSICALib.cpp
@@ -17,7 +17,7 @@
along with MSICA. If not, see .
*/
-#include "stdafx.h"
+#include "pch.h"
#pragma comment(lib, "msi.lib")
#pragma comment(lib, "shlwapi.lib")
diff --git a/src/OpCert.cpp b/src/OpCert.cpp
index 2307d80..57cebaa 100644
--- a/src/OpCert.cpp
+++ b/src/OpCert.cpp
@@ -17,7 +17,7 @@
along with MSICA. If not, see .
*/
-#include "stdafx.h"
+#include "pch.h"
#pragma comment(lib, "crypt32.lib")
diff --git a/src/OpFile.cpp b/src/OpFile.cpp
index b0dc347..d4358ca 100644
--- a/src/OpFile.cpp
+++ b/src/OpFile.cpp
@@ -17,7 +17,7 @@
along with MSICA. If not, see .
*/
-#include "stdafx.h"
+#include "pch.h"
namespace MSICA {
diff --git a/src/OpReg.cpp b/src/OpReg.cpp
index fd1412e..5a9823f 100644
--- a/src/OpReg.cpp
+++ b/src/OpReg.cpp
@@ -17,7 +17,7 @@
along with MSICA. If not, see .
*/
-#include "stdafx.h"
+#include "pch.h"
namespace MSICA {
diff --git a/src/OpSvc.cpp b/src/OpSvc.cpp
index bc490e2..54f3ca6 100644
--- a/src/OpSvc.cpp
+++ b/src/OpSvc.cpp
@@ -17,7 +17,7 @@
along with MSICA. If not, see .
*/
-#include "stdafx.h"
+#include "pch.h"
#pragma comment(lib, "advapi32.lib")
diff --git a/src/OpTS.cpp b/src/OpTS.cpp
index af96907..a33f547 100644
--- a/src/OpTS.cpp
+++ b/src/OpTS.cpp
@@ -17,7 +17,7 @@
along with MSICA. If not, see .
*/
-#include "stdafx.h"
+#include "pch.h"
#pragma comment(lib, "mstask.lib")
#pragma comment(lib, "taskschd.lib")
diff --git a/src/OpWLAN.cpp b/src/OpWLAN.cpp
index 3bb3db5..47447ca 100644
--- a/src/OpWLAN.cpp
+++ b/src/OpWLAN.cpp
@@ -17,7 +17,7 @@
along with MSICA. If not, see .
*/
-#include "stdafx.h"
+#include "pch.h"
namespace MSICA {
diff --git a/src/stdafx.cpp b/src/pch.cpp
similarity index 94%
rename from src/stdafx.cpp
rename to src/pch.cpp
index 6b139d9..2001179 100644
--- a/src/stdafx.cpp
+++ b/src/pch.cpp
@@ -17,4 +17,4 @@
along with MSICA. If not, see .
*/
-#include "stdafx.h"
+#include "pch.h"
diff --git a/src/stdafx.h b/src/pch.h
similarity index 100%
rename from src/stdafx.h
rename to src/pch.h