diff --git a/src/.build/MSBuild.Community.Tasks.dll b/src/.build/MSBuild.Community.Tasks.dll
new file mode 100644
index 0000000..50adbbb
Binary files /dev/null and b/src/.build/MSBuild.Community.Tasks.dll differ
diff --git a/src/.build/MSBuild.Community.Tasks.targets b/src/.build/MSBuild.Community.Tasks.targets
new file mode 100644
index 0000000..053e9ae
--- /dev/null
+++ b/src/.build/MSBuild.Community.Tasks.targets
@@ -0,0 +1,158 @@
+
+
+
+
+
+ $(MSBuildThisFileDirectory)
+ $([MSBUILD]::Unescape($(MSBuildCommunityTasksPath)\MSBuild.Community.Tasks.dll))
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/.build/lessio.msbuild b/src/.build/lessio.msbuild
new file mode 100644
index 0000000..1645dd2
--- /dev/null
+++ b/src/.build/lessio.msbuild
@@ -0,0 +1,169 @@
+
+
+
+
+
+ $(MSBuildProjectDirectory)
+
+
+
+
+ ..\
+ $(RootDir)\.deploy
+ Copyright Scott Willeke ©2016
+ A file system I/O library that overcomes limitations of .NET's System.IO libraries (such as long path names), aspires to be platform independent, and require less time to learn than System.IO.
+ lessio-v$(TheVersion).zip
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_RequiredProperties Include="TheVersion">
+ $(TheVersion)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $(TheDeployDir)\nuget-package
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/.build/lessio.nuspec b/src/.build/lessio.nuspec
new file mode 100644
index 0000000..768e8e5
--- /dev/null
+++ b/src/.build/lessio.nuspec
@@ -0,0 +1,17 @@
+
+
+
+ LessIO
+ $version$
+ Scott Willeke
+ https://github.com/activescott/LessIO/blob/master/LICENSE
+ https://github.com/activescott/LessIO
+ false
+ $description$
+ Copyright 2016
+ file directory files directories io filesystem file-system
+
+
+
+
+
\ No newline at end of file
diff --git a/src/LessIO.sln b/src/LessIO.sln
new file mode 100644
index 0000000..0fe50a2
--- /dev/null
+++ b/src/LessIO.sln
@@ -0,0 +1,37 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 14
+VisualStudioVersion = 14.0.24720.0
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LessIO", "LessIO\LessIO.csproj", "{51482E40-C227-4C5A-9B55-42440C041D55}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LessIO.Tests", "LessIO.Tests\LessIO.Tests.csproj", "{53C73525-6911-4B86-9918-E5AB175547F8}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{A5A71000-BC56-4D50-B153-C2230C1F4BFA}"
+ ProjectSection(SolutionItems) = preProject
+ build.bat = build.bat
+ .build\lessio.msbuild = .build\lessio.msbuild
+ .build\lessio.nuspec = .build\lessio.nuspec
+ ..\LICENSE = ..\LICENSE
+ ..\README.md = ..\README.md
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {51482E40-C227-4C5A-9B55-42440C041D55}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {51482E40-C227-4C5A-9B55-42440C041D55}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {51482E40-C227-4C5A-9B55-42440C041D55}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {51482E40-C227-4C5A-9B55-42440C041D55}.Release|Any CPU.Build.0 = Release|Any CPU
+ {53C73525-6911-4B86-9918-E5AB175547F8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {53C73525-6911-4B86-9918-E5AB175547F8}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {53C73525-6911-4B86-9918-E5AB175547F8}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {53C73525-6911-4B86-9918-E5AB175547F8}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/src/LessIO/LessIO.csproj b/src/LessIO/LessIO.csproj
index 7479cf1..e56aa50 100644
--- a/src/LessIO/LessIO.csproj
+++ b/src/LessIO/LessIO.csproj
@@ -33,7 +33,6 @@
-
@@ -44,11 +43,6 @@
-
-
- README.md
-
-