diff --git a/.gitignore b/.gitignore
index f65a44b..b2f174d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,3 +15,8 @@
/libserialport.pc
/libtool
stamp-h?
+.vs/
+Debug/
+Release/
+x64/
+libserialport.vcxproj.user
\ No newline at end of file
diff --git a/common.props b/common.props
new file mode 100644
index 0000000..f1d0e39
--- /dev/null
+++ b/common.props
@@ -0,0 +1,23 @@
+
+
+
+
+
+ <_PropertySheetDisplayName>Common
+
+
+
+ Level3
+ true
+ true
+ NotUsing
+
+
+ Windows
+ true
+ false
+ setupapi.lib;%(AdditionalDependencies)
+
+
+
+
\ No newline at end of file
diff --git a/debug.props b/debug.props
new file mode 100644
index 0000000..00741a1
--- /dev/null
+++ b/debug.props
@@ -0,0 +1,17 @@
+
+
+
+
+
+ <_PropertySheetDisplayName>Debug
+
+
+
+ LIBSERIALPORT_MSBUILD;_DEBUG;%(PreprocessorDefinitions)
+
+
+ true
+
+
+
+
\ No newline at end of file
diff --git a/libserialport.sln b/libserialport.sln
new file mode 100644
index 0000000..755b0c2
--- /dev/null
+++ b/libserialport.sln
@@ -0,0 +1,31 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.29613.14
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libserialport", "libserialport.vcxproj", "{1C8EAAF2-133E-4CEE-8981-4A903A8B3935}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|x64 = Debug|x64
+ Debug|x86 = Debug|x86
+ Release|x64 = Release|x64
+ Release|x86 = Release|x86
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {1C8EAAF2-133E-4CEE-8981-4A903A8B3935}.Debug|x64.ActiveCfg = Debug|x64
+ {1C8EAAF2-133E-4CEE-8981-4A903A8B3935}.Debug|x64.Build.0 = Debug|x64
+ {1C8EAAF2-133E-4CEE-8981-4A903A8B3935}.Debug|x86.ActiveCfg = Debug|Win32
+ {1C8EAAF2-133E-4CEE-8981-4A903A8B3935}.Debug|x86.Build.0 = Debug|Win32
+ {1C8EAAF2-133E-4CEE-8981-4A903A8B3935}.Release|x64.ActiveCfg = Release|x64
+ {1C8EAAF2-133E-4CEE-8981-4A903A8B3935}.Release|x64.Build.0 = Release|x64
+ {1C8EAAF2-133E-4CEE-8981-4A903A8B3935}.Release|x86.ActiveCfg = Release|Win32
+ {1C8EAAF2-133E-4CEE-8981-4A903A8B3935}.Release|x86.Build.0 = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {C2042526-D57D-45CA-B39F-6D9A782D1A05}
+ EndGlobalSection
+EndGlobal
diff --git a/libserialport.vcxproj b/libserialport.vcxproj
new file mode 100644
index 0000000..4ed44ef
--- /dev/null
+++ b/libserialport.vcxproj
@@ -0,0 +1,84 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+
+
+
+
+
+
+
+
+
+
+ 16.0
+ {1C8EAAF2-133E-4CEE-8981-4A903A8B3935}
+ Win32Proj
+ libserialport
+ 10.0
+
+
+
+ DynamicLibrary
+ true
+ v142
+ Unicode
+
+
+ DynamicLibrary
+ false
+ v142
+ true
+ Unicode
+
+
+ DynamicLibrary
+ true
+ v142
+ Unicode
+
+
+ DynamicLibrary
+ false
+ v142
+ true
+ Unicode
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/libserialport.vcxproj.filters b/libserialport.vcxproj.filters
new file mode 100644
index 0000000..019d000
--- /dev/null
+++ b/libserialport.vcxproj.filters
@@ -0,0 +1,36 @@
+
+
+
+
+ {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
+ cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
+
+
+ {93995380-89BD-4b04-88EB-625FBE52EBFB}
+ h;hh;hpp;hxx;hm;inl;inc;ipp;xsd
+
+
+ {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
+ rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
+
+
+
+
+ Header Files
+
+
+ Header Files
+
+
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+
\ No newline at end of file
diff --git a/release.props b/release.props
new file mode 100644
index 0000000..8d4bcf2
--- /dev/null
+++ b/release.props
@@ -0,0 +1,20 @@
+
+
+
+
+
+ <_PropertySheetDisplayName>Release
+
+
+
+ LIBSERIALPORT_MSBUILD;NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+
+
+ true
+ true
+
+
+
+
\ No newline at end of file