diff --git a/NTwain.sln b/NTwain.sln index 8595d8e..834ce5d 100644 --- a/NTwain.sln +++ b/NTwain.sln @@ -1,28 +1,30 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 -VisualStudioVersion = 12.0.30324.0 +VisualStudioVersion = 12.0.31101.0 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NTwain", "NTwain\NTwain.csproj", "{0C5A6FB1-0282-4D61-8354-68DEB1515001}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NTwain", "src\NTwain\NTwain.csproj", "{0C5A6FB1-0282-4D61-8354-68DEB1515001}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NTwain.Tests", "Tests\NTwain.Tests\NTwain.Tests.csproj", "{6B034C50-A397-435F-8DDF-677B403FEBAA}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{2F906640-1664-4960-93D2-A054AC6E66A3}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{2F906640-1664-4960-93D2-A054AC6E66A3}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tester.Winform", "Tests\Tester.Winform\Tester.Winform.csproj", "{4FC243F1-318E-4FA9-9EBD-2CA3A8F35425}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sample.Winform", "samples\Sample.Winform\Sample.Winform.csproj", "{4FC243F1-318E-4FA9-9EBD-2CA3A8F35425}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tester.WPF", "Tests\Tester.WPF\Tester.WPF.csproj", "{1715C2B7-5C35-4F8B-9D9B-8D68A3D5284D}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sample.WPF", "samples\Sample.WPF\Sample.WPF.csproj", "{1715C2B7-5C35-4F8B-9D9B-8D68A3D5284D}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Others", "Others", "{4CE0B9ED-2CD1-440F-B4EC-35ECA6D61EFE}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "common", "common", "{4CE0B9ED-2CD1-440F-B4EC-35ECA6D61EFE}" ProjectSection(SolutionItems) = preProject LICENSE.txt = LICENSE.txt README.md = README.md Spec\twain2.3.h = Spec\twain2.3.h EndProjectSection EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tester.Console", "Tests\Tester.Console\Tester.Console.csproj", "{12D761EF-68DF-41CE-92EF-0C7AE81857A3}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sample.Console", "samples\Sample.Console\Sample.Console.csproj", "{12D761EF-68DF-41CE-92EF-0C7AE81857A3}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NTwain.Net35", "NTwain.Net35\NTwain.Net35.csproj", "{2E965494-94B0-4EC7-960C-24E5D7D04278}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NTwain.Net35", "src\NTwain.Net35\NTwain.Net35.csproj", "{2E965494-94B0-4EC7-960C-24E5D7D04278}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{B77C17FE-FD84-4FF4-9A1C-D49DB1749C9C}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -98,7 +100,7 @@ Global HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution - {6B034C50-A397-435F-8DDF-677B403FEBAA} = {2F906640-1664-4960-93D2-A054AC6E66A3} + {6B034C50-A397-435F-8DDF-677B403FEBAA} = {B77C17FE-FD84-4FF4-9A1C-D49DB1749C9C} {4FC243F1-318E-4FA9-9EBD-2CA3A8F35425} = {2F906640-1664-4960-93D2-A054AC6E66A3} {1715C2B7-5C35-4F8B-9D9B-8D68A3D5284D} = {2F906640-1664-4960-93D2-A054AC6E66A3} {12D761EF-68DF-41CE-92EF-0C7AE81857A3} = {2F906640-1664-4960-93D2-A054AC6E66A3} diff --git a/Tests/NTwain.Tests/NTwain.Tests.csproj b/Tests/NTwain.Tests/NTwain.Tests.csproj index 75cdb9f..ffc5d5f 100644 --- a/Tests/NTwain.Tests/NTwain.Tests.csproj +++ b/Tests/NTwain.Tests/NTwain.Tests.csproj @@ -72,7 +72,7 @@ - + {0C5A6FB1-0282-4D61-8354-68DEB1515001} NTwain diff --git a/Tests/Tester.Console/Program.cs b/samples/Sample.Console/Program.cs similarity index 99% rename from Tests/Tester.Console/Program.cs rename to samples/Sample.Console/Program.cs index 9b933a4..92114cb 100644 --- a/Tests/Tester.Console/Program.cs +++ b/samples/Sample.Console/Program.cs @@ -5,7 +5,7 @@ using System.Linq; using System.Reflection; using System.Threading; -namespace Tester +namespace Sample { class Program { diff --git a/Tests/Tester.Console/Properties/AssemblyInfo.cs b/samples/Sample.Console/Properties/AssemblyInfo.cs similarity index 100% rename from Tests/Tester.Console/Properties/AssemblyInfo.cs rename to samples/Sample.Console/Properties/AssemblyInfo.cs diff --git a/Tests/Tester.Console/Tester.Console.csproj b/samples/Sample.Console/Sample.Console.csproj similarity index 94% rename from Tests/Tester.Console/Tester.Console.csproj rename to samples/Sample.Console/Sample.Console.csproj index 8c184ad..a13d53c 100644 --- a/Tests/Tester.Console/Tester.Console.csproj +++ b/samples/Sample.Console/Sample.Console.csproj @@ -7,8 +7,8 @@ {12D761EF-68DF-41CE-92EF-0C7AE81857A3} Exe Properties - Tester - Tester.Console + Sample + Sample.Console v4.0 512 @@ -46,7 +46,7 @@ - + {0c5a6fb1-0282-4d61-8354-68deb1515001} NTwain diff --git a/Tests/Tester.WPF/App.xaml b/samples/Sample.WPF/App.xaml similarity index 98% rename from Tests/Tester.WPF/App.xaml rename to samples/Sample.WPF/App.xaml index 6521714..9c8bf78 100644 --- a/Tests/Tester.WPF/App.xaml +++ b/samples/Sample.WPF/App.xaml @@ -1,4 +1,4 @@ - diff --git a/Tests/Tester.WPF/App.xaml.cs b/samples/Sample.WPF/App.xaml.cs similarity index 93% rename from Tests/Tester.WPF/App.xaml.cs rename to samples/Sample.WPF/App.xaml.cs index 616dbe4..1fad94f 100644 --- a/Tests/Tester.WPF/App.xaml.cs +++ b/samples/Sample.WPF/App.xaml.cs @@ -1,7 +1,7 @@ using ModernWPF; using System.Windows; -namespace Tester.WPF +namespace Sample.WPF { /// /// Interaction logic for App.xaml diff --git a/Tests/Tester.WPF/Launcher.xaml b/samples/Sample.WPF/Launcher.xaml similarity index 93% rename from Tests/Tester.WPF/Launcher.xaml rename to samples/Sample.WPF/Launcher.xaml index 861d5a6..34b691a 100644 --- a/Tests/Tester.WPF/Launcher.xaml +++ b/samples/Sample.WPF/Launcher.xaml @@ -1,4 +1,4 @@ - /// Interaction logic for Launcher.xaml diff --git a/Tests/Tester.WPF/MainWindow.xaml b/samples/Sample.WPF/MainWindow.xaml similarity index 98% rename from Tests/Tester.WPF/MainWindow.xaml rename to samples/Sample.WPF/MainWindow.xaml index 08677b6..5145ab1 100644 --- a/Tests/Tester.WPF/MainWindow.xaml +++ b/samples/Sample.WPF/MainWindow.xaml @@ -1,8 +1,8 @@ - /// Interaction logic for MainWindow.xaml diff --git a/Tests/Tester.WPF/Properties/AssemblyInfo.cs b/samples/Sample.WPF/Properties/AssemblyInfo.cs similarity index 96% rename from Tests/Tester.WPF/Properties/AssemblyInfo.cs rename to samples/Sample.WPF/Properties/AssemblyInfo.cs index 98b1e7f..3c604b8 100644 --- a/Tests/Tester.WPF/Properties/AssemblyInfo.cs +++ b/samples/Sample.WPF/Properties/AssemblyInfo.cs @@ -5,11 +5,11 @@ using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[assembly: AssemblyTitle("Tester.WPF")] +[assembly: AssemblyTitle("Sample.WPF")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Yin-Chun Wang")] -[assembly: AssemblyProduct("Tester.WPF")] +[assembly: AssemblyProduct("Sample.WPF")] [assembly: AssemblyCopyright("Copyright © Yin-Chun Wang 2014")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/Tests/Tester.WPF/Properties/Resources.Designer.cs b/samples/Sample.WPF/Properties/Resources.Designer.cs similarity index 94% rename from Tests/Tester.WPF/Properties/Resources.Designer.cs rename to samples/Sample.WPF/Properties/Resources.Designer.cs index 9875e33..016b1b3 100644 --- a/Tests/Tester.WPF/Properties/Resources.Designer.cs +++ b/samples/Sample.WPF/Properties/Resources.Designer.cs @@ -1,17 +1,17 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.18034 +// Runtime Version:4.0.30319.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ -namespace Tester.WPF.Properties -{ - - +namespace Sample.WPF.Properties { + using System; + + /// /// A strongly-typed resource class, for looking up localized strings, etc. /// @@ -39,7 +39,7 @@ namespace Tester.WPF.Properties internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Tester.WPF.Properties.Resources", typeof(Resources).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Sample.WPF.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Tests/Tester.WPF/Properties/Resources.resx b/samples/Sample.WPF/Properties/Resources.resx similarity index 100% rename from Tests/Tester.WPF/Properties/Resources.resx rename to samples/Sample.WPF/Properties/Resources.resx diff --git a/Tests/Tester.WPF/Properties/Settings.Designer.cs b/samples/Sample.WPF/Properties/Settings.Designer.cs similarity index 90% rename from Tests/Tester.WPF/Properties/Settings.Designer.cs rename to samples/Sample.WPF/Properties/Settings.Designer.cs index c954deb..3b0af87 100644 --- a/Tests/Tester.WPF/Properties/Settings.Designer.cs +++ b/samples/Sample.WPF/Properties/Settings.Designer.cs @@ -1,18 +1,18 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.18034 +// Runtime Version:4.0.30319.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ -namespace Tester.WPF.Properties { +namespace Sample.WPF.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "12.0.0.0")] internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); diff --git a/Tests/Tester.WPF/Properties/Settings.settings b/samples/Sample.WPF/Properties/Settings.settings similarity index 100% rename from Tests/Tester.WPF/Properties/Settings.settings rename to samples/Sample.WPF/Properties/Settings.settings diff --git a/Tests/Tester.WPF/Tester.WPF.csproj b/samples/Sample.WPF/Sample.WPF.csproj similarity index 98% rename from Tests/Tester.WPF/Tester.WPF.csproj rename to samples/Sample.WPF/Sample.WPF.csproj index 2963a2c..564b802 100644 --- a/Tests/Tester.WPF/Tester.WPF.csproj +++ b/samples/Sample.WPF/Sample.WPF.csproj @@ -7,8 +7,8 @@ {1715C2B7-5C35-4F8B-9D9B-8D68A3D5284D} WinExe Properties - Tester.WPF - Tester.WPF + Sample.WPF + Sample.WPF v4.0 512 {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} @@ -149,7 +149,7 @@ - + {0c5a6fb1-0282-4d61-8354-68deb1515001} NTwain diff --git a/Tests/Tester.WPF/ViewModels/CapVM.cs b/samples/Sample.WPF/ViewModels/CapVM.cs similarity index 99% rename from Tests/Tester.WPF/ViewModels/CapVM.cs rename to samples/Sample.WPF/ViewModels/CapVM.cs index 557dbdc..833c396 100644 --- a/Tests/Tester.WPF/ViewModels/CapVM.cs +++ b/samples/Sample.WPF/ViewModels/CapVM.cs @@ -4,7 +4,7 @@ using System.Collections; using System.Linq; using System.Reflection; -namespace Tester.WPF +namespace Sample.WPF { /// /// Wraps a capability as a view model. diff --git a/Tests/Tester.WPF/ViewModels/DataSourceVM.cs b/samples/Sample.WPF/ViewModels/DataSourceVM.cs similarity index 99% rename from Tests/Tester.WPF/ViewModels/DataSourceVM.cs rename to samples/Sample.WPF/ViewModels/DataSourceVM.cs index 5521bdc..a2855ea 100644 --- a/Tests/Tester.WPF/ViewModels/DataSourceVM.cs +++ b/samples/Sample.WPF/ViewModels/DataSourceVM.cs @@ -7,7 +7,7 @@ using System.ComponentModel; using System.Linq; using System.Windows.Data; -namespace Tester.WPF +namespace Sample.WPF { /// /// Wraps a data source as view model. diff --git a/Tests/Tester.WPF/ViewModels/TwainVM.cs b/samples/Sample.WPF/ViewModels/TwainVM.cs similarity index 99% rename from Tests/Tester.WPF/ViewModels/TwainVM.cs rename to samples/Sample.WPF/ViewModels/TwainVM.cs index d24c581..74b0e10 100644 --- a/Tests/Tester.WPF/ViewModels/TwainVM.cs +++ b/samples/Sample.WPF/ViewModels/TwainVM.cs @@ -16,7 +16,7 @@ using GalaSoft.MvvmLight.Command; using ModernWPF; using ModernWPF.Messages; -namespace Tester.WPF +namespace Sample.WPF { /// /// Wraps the twain session as a view model for databinding. diff --git a/Tests/Tester.WPF/app.config b/samples/Sample.WPF/app.config similarity index 100% rename from Tests/Tester.WPF/app.config rename to samples/Sample.WPF/app.config diff --git a/Tests/Tester.WPF/packages.config b/samples/Sample.WPF/packages.config similarity index 100% rename from Tests/Tester.WPF/packages.config rename to samples/Sample.WPF/packages.config diff --git a/Tests/Tester.WPF/scanner.ico b/samples/Sample.WPF/scanner.ico similarity index 100% rename from Tests/Tester.WPF/scanner.ico rename to samples/Sample.WPF/scanner.ico diff --git a/Tests/Tester.Winform/Program.cs b/samples/Sample.Winform/Program.cs similarity index 94% rename from Tests/Tester.Winform/Program.cs rename to samples/Sample.Winform/Program.cs index 79ec6fa..5897107 100644 --- a/Tests/Tester.Winform/Program.cs +++ b/samples/Sample.Winform/Program.cs @@ -1,7 +1,7 @@ using System; using System.Windows.Forms; -namespace Tester.Winform +namespace Sample.Winform { static class Program { diff --git a/Tests/Tester.Winform/Properties/AssemblyInfo.cs b/samples/Sample.Winform/Properties/AssemblyInfo.cs similarity index 93% rename from Tests/Tester.Winform/Properties/AssemblyInfo.cs rename to samples/Sample.Winform/Properties/AssemblyInfo.cs index 1277cfd..1611d25 100644 --- a/Tests/Tester.Winform/Properties/AssemblyInfo.cs +++ b/samples/Sample.Winform/Properties/AssemblyInfo.cs @@ -4,11 +4,11 @@ using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[assembly: AssemblyTitle("Tester.Winform")] +[assembly: AssemblyTitle("Sample.Winform")] [assembly: AssemblyDescription("Winform app for quick testing implementations in the TWAIN lib.")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Yin-Chun Wang")] -[assembly: AssemblyProduct("Tester.Winform")] +[assembly: AssemblyProduct("Sample.Winform")] [assembly: AssemblyCopyright("Copyright © Yin-Chun Wang 2014")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/Tests/Tester.Winform/Properties/Resources.Designer.cs b/samples/Sample.Winform/Properties/Resources.Designer.cs similarity index 94% rename from Tests/Tester.Winform/Properties/Resources.Designer.cs rename to samples/Sample.Winform/Properties/Resources.Designer.cs index ae8c875..50e2b0e 100644 --- a/Tests/Tester.Winform/Properties/Resources.Designer.cs +++ b/samples/Sample.Winform/Properties/Resources.Designer.cs @@ -1,17 +1,17 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.18034 +// Runtime Version:4.0.30319.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ -namespace Tester.Winform.Properties -{ - - +namespace Sample.Winform.Properties { + using System; + + /// /// A strongly-typed resource class, for looking up localized strings, etc. /// @@ -39,7 +39,7 @@ namespace Tester.Winform.Properties internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Tester.Winform.Properties.Resources", typeof(Resources).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Sample.Winform.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Tests/Tester.Winform/Properties/Resources.resx b/samples/Sample.Winform/Properties/Resources.resx similarity index 100% rename from Tests/Tester.Winform/Properties/Resources.resx rename to samples/Sample.Winform/Properties/Resources.resx diff --git a/Tests/Tester.Winform/Properties/Settings.Designer.cs b/samples/Sample.Winform/Properties/Settings.Designer.cs similarity index 90% rename from Tests/Tester.Winform/Properties/Settings.Designer.cs rename to samples/Sample.Winform/Properties/Settings.Designer.cs index 0a725e5..2a7239d 100644 --- a/Tests/Tester.Winform/Properties/Settings.Designer.cs +++ b/samples/Sample.Winform/Properties/Settings.Designer.cs @@ -1,18 +1,18 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.18034 +// Runtime Version:4.0.30319.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ -namespace Tester.Winform.Properties { +namespace Sample.Winform.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "12.0.0.0")] internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); diff --git a/Tests/Tester.Winform/Properties/Settings.settings b/samples/Sample.Winform/Properties/Settings.settings similarity index 100% rename from Tests/Tester.Winform/Properties/Settings.settings rename to samples/Sample.Winform/Properties/Settings.settings diff --git a/Tests/Tester.Winform/Tester.Winform.csproj b/samples/Sample.Winform/Sample.Winform.csproj similarity index 95% rename from Tests/Tester.Winform/Tester.Winform.csproj rename to samples/Sample.Winform/Sample.Winform.csproj index d9cf963..efa2bb7 100644 --- a/Tests/Tester.Winform/Tester.Winform.csproj +++ b/samples/Sample.Winform/Sample.Winform.csproj @@ -8,8 +8,8 @@ {4FC243F1-318E-4FA9-9EBD-2CA3A8F35425} WinExe Properties - Tester.Winform - Tester.Winform + Sample.Winform + Sample.Winform v3.5 512 Client @@ -77,7 +77,7 @@ - + {2e965494-94b0-4ec7-960c-24e5d7d04278} NTwain.Net35 diff --git a/Tests/Tester.Winform/TestForm.Designer.cs b/samples/Sample.Winform/TestForm.Designer.cs similarity index 99% rename from Tests/Tester.Winform/TestForm.Designer.cs rename to samples/Sample.Winform/TestForm.Designer.cs index 86d0d2a..3c58363 100644 --- a/Tests/Tester.Winform/TestForm.Designer.cs +++ b/samples/Sample.Winform/TestForm.Designer.cs @@ -1,4 +1,4 @@ -namespace Tester.Winform +namespace Sample.Winform { partial class TestForm { diff --git a/Tests/Tester.Winform/TestForm.cs b/samples/Sample.Winform/TestForm.cs similarity index 99% rename from Tests/Tester.Winform/TestForm.cs rename to samples/Sample.Winform/TestForm.cs index 4458e17..2524b88 100644 --- a/Tests/Tester.Winform/TestForm.cs +++ b/samples/Sample.Winform/TestForm.cs @@ -9,7 +9,7 @@ using System.Reflection; using System.Threading; using System.Windows.Forms; -namespace Tester.Winform +namespace Sample.Winform { sealed partial class TestForm : Form { diff --git a/Tests/Tester.Winform/TestForm.resx b/samples/Sample.Winform/TestForm.resx similarity index 100% rename from Tests/Tester.Winform/TestForm.resx rename to samples/Sample.Winform/TestForm.resx diff --git a/Tests/Tester.Winform/app.config b/samples/Sample.Winform/app.config similarity index 100% rename from Tests/Tester.Winform/app.config rename to samples/Sample.Winform/app.config diff --git a/Tests/Tester.Winform/scanner.ico b/samples/Sample.Winform/scanner.ico similarity index 100% rename from Tests/Tester.Winform/scanner.ico rename to samples/Sample.Winform/scanner.ico diff --git a/NTwain.Net35/NTwain.Net35.csproj b/src/NTwain.Net35/NTwain.Net35.csproj similarity index 100% rename from NTwain.Net35/NTwain.Net35.csproj rename to src/NTwain.Net35/NTwain.Net35.csproj diff --git a/NTwain.Net35/Sign.snk b/src/NTwain.Net35/Sign.snk similarity index 100% rename from NTwain.Net35/Sign.snk rename to src/NTwain.Net35/Sign.snk diff --git a/NTwain/CapWrapper.cs b/src/NTwain/CapWrapper.cs similarity index 100% rename from NTwain/CapWrapper.cs rename to src/NTwain/CapWrapper.cs diff --git a/NTwain/Capabilities.cs b/src/NTwain/Capabilities.cs similarity index 100% rename from NTwain/Capabilities.cs rename to src/NTwain/Capabilities.cs diff --git a/NTwain/CapabilityReader.cs b/src/NTwain/CapabilityReader.cs similarity index 100% rename from NTwain/CapabilityReader.cs rename to src/NTwain/CapabilityReader.cs diff --git a/NTwain/Data/TwainTypes.cs b/src/NTwain/Data/TwainTypes.cs similarity index 100% rename from NTwain/Data/TwainTypes.cs rename to src/NTwain/Data/TwainTypes.cs diff --git a/NTwain/Data/TwainTypesExtended.cs b/src/NTwain/Data/TwainTypesExtended.cs similarity index 100% rename from NTwain/Data/TwainTypesExtended.cs rename to src/NTwain/Data/TwainTypesExtended.cs diff --git a/NTwain/Data/TwainValues.cs b/src/NTwain/Data/TwainValues.cs similarity index 100% rename from NTwain/Data/TwainValues.cs rename to src/NTwain/Data/TwainValues.cs diff --git a/NTwain/Data/TypeExtensions.cs b/src/NTwain/Data/TypeExtensions.cs similarity index 100% rename from NTwain/Data/TypeExtensions.cs rename to src/NTwain/Data/TypeExtensions.cs diff --git a/NTwain/Data/ValueExtensions.cs b/src/NTwain/Data/ValueExtensions.cs similarity index 100% rename from NTwain/Data/ValueExtensions.cs rename to src/NTwain/Data/ValueExtensions.cs diff --git a/NTwain/DataSource.cs b/src/NTwain/DataSource.cs similarity index 100% rename from NTwain/DataSource.cs rename to src/NTwain/DataSource.cs diff --git a/NTwain/DataTransferredEventArgs.cs b/src/NTwain/DataTransferredEventArgs.cs similarity index 100% rename from NTwain/DataTransferredEventArgs.cs rename to src/NTwain/DataTransferredEventArgs.cs diff --git a/NTwain/DeviceEventArgs.cs b/src/NTwain/DeviceEventArgs.cs similarity index 100% rename from NTwain/DeviceEventArgs.cs rename to src/NTwain/DeviceEventArgs.cs diff --git a/NTwain/GlobalSuppressions.cs b/src/NTwain/GlobalSuppressions.cs similarity index 100% rename from NTwain/GlobalSuppressions.cs rename to src/NTwain/GlobalSuppressions.cs diff --git a/NTwain/ICapWrapper.cs b/src/NTwain/ICapWrapper.cs similarity index 100% rename from NTwain/ICapWrapper.cs rename to src/NTwain/ICapWrapper.cs diff --git a/NTwain/IDataSource.cs b/src/NTwain/IDataSource.cs similarity index 100% rename from NTwain/IDataSource.cs rename to src/NTwain/IDataSource.cs diff --git a/NTwain/IMemoryManager.cs b/src/NTwain/IMemoryManager.cs similarity index 100% rename from NTwain/IMemoryManager.cs rename to src/NTwain/IMemoryManager.cs diff --git a/NTwain/IPlatformInfo.cs b/src/NTwain/IPlatformInfo.cs similarity index 100% rename from NTwain/IPlatformInfo.cs rename to src/NTwain/IPlatformInfo.cs diff --git a/NTwain/ITripletControl.cs b/src/NTwain/ITripletControl.cs similarity index 100% rename from NTwain/ITripletControl.cs rename to src/NTwain/ITripletControl.cs diff --git a/NTwain/ITwainSession.cs b/src/NTwain/ITwainSession.cs similarity index 100% rename from NTwain/ITwainSession.cs rename to src/NTwain/ITwainSession.cs diff --git a/NTwain/Internals/Extensions.cs b/src/NTwain/Internals/Extensions.cs similarity index 100% rename from NTwain/Internals/Extensions.cs rename to src/NTwain/Internals/Extensions.cs diff --git a/NTwain/Internals/ICommittable.cs b/src/NTwain/Internals/ICommittable.cs similarity index 100% rename from NTwain/Internals/ICommittable.cs rename to src/NTwain/Internals/ICommittable.cs diff --git a/NTwain/Internals/ITwainSessionInternal.cs b/src/NTwain/Internals/ITwainSessionInternal.cs similarity index 100% rename from NTwain/Internals/ITwainSessionInternal.cs rename to src/NTwain/Internals/ITwainSessionInternal.cs diff --git a/NTwain/Internals/IWinMessageFilter.cs b/src/NTwain/Internals/IWinMessageFilter.cs similarity index 100% rename from NTwain/Internals/IWinMessageFilter.cs rename to src/NTwain/Internals/IWinMessageFilter.cs diff --git a/NTwain/Internals/ImageTools.cs b/src/NTwain/Internals/ImageTools.cs similarity index 100% rename from NTwain/Internals/ImageTools.cs rename to src/NTwain/Internals/ImageTools.cs diff --git a/NTwain/Internals/InternalMessageLoopHook.cs b/src/NTwain/Internals/InternalMessageLoopHook.cs similarity index 100% rename from NTwain/Internals/InternalMessageLoopHook.cs rename to src/NTwain/Internals/InternalMessageLoopHook.cs diff --git a/NTwain/Internals/LinuxMemoryManager.cs b/src/NTwain/Internals/LinuxMemoryManager.cs similarity index 100% rename from NTwain/Internals/LinuxMemoryManager.cs rename to src/NTwain/Internals/LinuxMemoryManager.cs diff --git a/NTwain/Internals/TentativeStateCommitable.cs b/src/NTwain/Internals/TentativeStateCommitable.cs similarity index 100% rename from NTwain/Internals/TentativeStateCommitable.cs rename to src/NTwain/Internals/TentativeStateCommitable.cs diff --git a/NTwain/Internals/TransferLogic.cs b/src/NTwain/Internals/TransferLogic.cs similarity index 100% rename from NTwain/Internals/TransferLogic.cs rename to src/NTwain/Internals/TransferLogic.cs diff --git a/NTwain/Internals/WinMemoryManager.cs b/src/NTwain/Internals/WinMemoryManager.cs similarity index 100% rename from NTwain/Internals/WinMemoryManager.cs rename to src/NTwain/Internals/WinMemoryManager.cs diff --git a/NTwain/Internals/WindowsHook.cs b/src/NTwain/Internals/WindowsHook.cs similarity index 100% rename from NTwain/Internals/WindowsHook.cs rename to src/NTwain/Internals/WindowsHook.cs diff --git a/NTwain/Internals/WrappedManualResetEvent.cs b/src/NTwain/Internals/WrappedManualResetEvent.cs similarity index 100% rename from NTwain/Internals/WrappedManualResetEvent.cs rename to src/NTwain/Internals/WrappedManualResetEvent.cs diff --git a/NTwain/Interop/BITMAP.cs b/src/NTwain/Interop/BITMAP.cs similarity index 100% rename from NTwain/Interop/BITMAP.cs rename to src/NTwain/Interop/BITMAP.cs diff --git a/NTwain/Interop/MESSAGE.cs b/src/NTwain/Interop/MESSAGE.cs similarity index 100% rename from NTwain/Interop/MESSAGE.cs rename to src/NTwain/Interop/MESSAGE.cs diff --git a/NTwain/Interop/NativeMethods.cs b/src/NTwain/Interop/NativeMethods.cs similarity index 100% rename from NTwain/Interop/NativeMethods.cs rename to src/NTwain/Interop/NativeMethods.cs diff --git a/NTwain/Interop/TIFF.cs b/src/NTwain/Interop/TIFF.cs similarity index 100% rename from NTwain/Interop/TIFF.cs rename to src/NTwain/Interop/TIFF.cs diff --git a/NTwain/Interop/UnsafeNativeMethods.cs b/src/NTwain/Interop/UnsafeNativeMethods.cs similarity index 100% rename from NTwain/Interop/UnsafeNativeMethods.cs rename to src/NTwain/Interop/UnsafeNativeMethods.cs diff --git a/NTwain/MessageLoopHooks.cs b/src/NTwain/MessageLoopHooks.cs similarity index 100% rename from NTwain/MessageLoopHooks.cs rename to src/NTwain/MessageLoopHooks.cs diff --git a/NTwain/NTwain.csproj b/src/NTwain/NTwain.csproj similarity index 100% rename from NTwain/NTwain.csproj rename to src/NTwain/NTwain.csproj diff --git a/NTwain/NTwain.nuspec b/src/NTwain/NTwain.nuspec similarity index 100% rename from NTwain/NTwain.nuspec rename to src/NTwain/NTwain.nuspec diff --git a/NTwain/PlatformInfo.cs b/src/NTwain/PlatformInfo.cs similarity index 100% rename from NTwain/PlatformInfo.cs rename to src/NTwain/PlatformInfo.cs diff --git a/NTwain/Properties/AssemblyInfo.cs b/src/NTwain/Properties/AssemblyInfo.cs similarity index 100% rename from NTwain/Properties/AssemblyInfo.cs rename to src/NTwain/Properties/AssemblyInfo.cs diff --git a/NTwain/Properties/Resources.Designer.cs b/src/NTwain/Properties/Resources.Designer.cs similarity index 100% rename from NTwain/Properties/Resources.Designer.cs rename to src/NTwain/Properties/Resources.Designer.cs diff --git a/NTwain/Properties/Resources.resx b/src/NTwain/Properties/Resources.resx similarity index 100% rename from NTwain/Properties/Resources.resx rename to src/NTwain/Properties/Resources.resx diff --git a/NTwain/Properties/VersionInfo.cs b/src/NTwain/Properties/VersionInfo.cs similarity index 100% rename from NTwain/Properties/VersionInfo.cs rename to src/NTwain/Properties/VersionInfo.cs diff --git a/NTwain/ProtocolVersions.cs b/src/NTwain/ProtocolVersions.cs similarity index 100% rename from NTwain/ProtocolVersions.cs rename to src/NTwain/ProtocolVersions.cs diff --git a/NTwain/Sign.snk b/src/NTwain/Sign.snk similarity index 100% rename from NTwain/Sign.snk rename to src/NTwain/Sign.snk diff --git a/NTwain/SourceEnableMode.cs b/src/NTwain/SourceEnableMode.cs similarity index 100% rename from NTwain/SourceEnableMode.cs rename to src/NTwain/SourceEnableMode.cs diff --git a/NTwain/State.cs b/src/NTwain/State.cs similarity index 100% rename from NTwain/State.cs rename to src/NTwain/State.cs diff --git a/NTwain/TransferErrorEventArgs.cs b/src/NTwain/TransferErrorEventArgs.cs similarity index 100% rename from NTwain/TransferErrorEventArgs.cs rename to src/NTwain/TransferErrorEventArgs.cs diff --git a/NTwain/TransferReadyEventArgs.cs b/src/NTwain/TransferReadyEventArgs.cs similarity index 100% rename from NTwain/TransferReadyEventArgs.cs rename to src/NTwain/TransferReadyEventArgs.cs diff --git a/NTwain/Triplets/DGAudio/DGAudio.AudioFileXfer.cs b/src/NTwain/Triplets/DGAudio/DGAudio.AudioFileXfer.cs similarity index 100% rename from NTwain/Triplets/DGAudio/DGAudio.AudioFileXfer.cs rename to src/NTwain/Triplets/DGAudio/DGAudio.AudioFileXfer.cs diff --git a/NTwain/Triplets/DGAudio/DGAudio.AudioInfo.cs b/src/NTwain/Triplets/DGAudio/DGAudio.AudioInfo.cs similarity index 100% rename from NTwain/Triplets/DGAudio/DGAudio.AudioInfo.cs rename to src/NTwain/Triplets/DGAudio/DGAudio.AudioInfo.cs diff --git a/NTwain/Triplets/DGAudio/DGAudio.AudioNativeXfer.cs b/src/NTwain/Triplets/DGAudio/DGAudio.AudioNativeXfer.cs similarity index 100% rename from NTwain/Triplets/DGAudio/DGAudio.AudioNativeXfer.cs rename to src/NTwain/Triplets/DGAudio/DGAudio.AudioNativeXfer.cs diff --git a/NTwain/Triplets/DGAudio/DGAudio.cs b/src/NTwain/Triplets/DGAudio/DGAudio.cs similarity index 100% rename from NTwain/Triplets/DGAudio/DGAudio.cs rename to src/NTwain/Triplets/DGAudio/DGAudio.cs diff --git a/NTwain/Triplets/DGControl/DGControl.Callback.cs b/src/NTwain/Triplets/DGControl/DGControl.Callback.cs similarity index 100% rename from NTwain/Triplets/DGControl/DGControl.Callback.cs rename to src/NTwain/Triplets/DGControl/DGControl.Callback.cs diff --git a/NTwain/Triplets/DGControl/DGControl.Callback2.cs b/src/NTwain/Triplets/DGControl/DGControl.Callback2.cs similarity index 100% rename from NTwain/Triplets/DGControl/DGControl.Callback2.cs rename to src/NTwain/Triplets/DGControl/DGControl.Callback2.cs diff --git a/NTwain/Triplets/DGControl/DGControl.Capability.cs b/src/NTwain/Triplets/DGControl/DGControl.Capability.cs similarity index 100% rename from NTwain/Triplets/DGControl/DGControl.Capability.cs rename to src/NTwain/Triplets/DGControl/DGControl.Capability.cs diff --git a/NTwain/Triplets/DGControl/DGControl.CapabilityCustom.cs b/src/NTwain/Triplets/DGControl/DGControl.CapabilityCustom.cs similarity index 100% rename from NTwain/Triplets/DGControl/DGControl.CapabilityCustom.cs rename to src/NTwain/Triplets/DGControl/DGControl.CapabilityCustom.cs diff --git a/NTwain/Triplets/DGControl/DGControl.CustomDSData.cs b/src/NTwain/Triplets/DGControl/DGControl.CustomDSData.cs similarity index 100% rename from NTwain/Triplets/DGControl/DGControl.CustomDSData.cs rename to src/NTwain/Triplets/DGControl/DGControl.CustomDSData.cs diff --git a/NTwain/Triplets/DGControl/DGControl.DeviceEvent.cs b/src/NTwain/Triplets/DGControl/DGControl.DeviceEvent.cs similarity index 100% rename from NTwain/Triplets/DGControl/DGControl.DeviceEvent.cs rename to src/NTwain/Triplets/DGControl/DGControl.DeviceEvent.cs diff --git a/NTwain/Triplets/DGControl/DGControl.EntryPoint.cs b/src/NTwain/Triplets/DGControl/DGControl.EntryPoint.cs similarity index 100% rename from NTwain/Triplets/DGControl/DGControl.EntryPoint.cs rename to src/NTwain/Triplets/DGControl/DGControl.EntryPoint.cs diff --git a/NTwain/Triplets/DGControl/DGControl.Event.cs b/src/NTwain/Triplets/DGControl/DGControl.Event.cs similarity index 100% rename from NTwain/Triplets/DGControl/DGControl.Event.cs rename to src/NTwain/Triplets/DGControl/DGControl.Event.cs diff --git a/NTwain/Triplets/DGControl/DGControl.FileSystem.cs b/src/NTwain/Triplets/DGControl/DGControl.FileSystem.cs similarity index 100% rename from NTwain/Triplets/DGControl/DGControl.FileSystem.cs rename to src/NTwain/Triplets/DGControl/DGControl.FileSystem.cs diff --git a/NTwain/Triplets/DGControl/DGControl.Identity.cs b/src/NTwain/Triplets/DGControl/DGControl.Identity.cs similarity index 100% rename from NTwain/Triplets/DGControl/DGControl.Identity.cs rename to src/NTwain/Triplets/DGControl/DGControl.Identity.cs diff --git a/NTwain/Triplets/DGControl/DGControl.Parent.cs b/src/NTwain/Triplets/DGControl/DGControl.Parent.cs similarity index 100% rename from NTwain/Triplets/DGControl/DGControl.Parent.cs rename to src/NTwain/Triplets/DGControl/DGControl.Parent.cs diff --git a/NTwain/Triplets/DGControl/DGControl.PassThru.cs b/src/NTwain/Triplets/DGControl/DGControl.PassThru.cs similarity index 100% rename from NTwain/Triplets/DGControl/DGControl.PassThru.cs rename to src/NTwain/Triplets/DGControl/DGControl.PassThru.cs diff --git a/NTwain/Triplets/DGControl/DGControl.PendingXfers.cs b/src/NTwain/Triplets/DGControl/DGControl.PendingXfers.cs similarity index 100% rename from NTwain/Triplets/DGControl/DGControl.PendingXfers.cs rename to src/NTwain/Triplets/DGControl/DGControl.PendingXfers.cs diff --git a/NTwain/Triplets/DGControl/DGControl.SetupFileXfer.cs b/src/NTwain/Triplets/DGControl/DGControl.SetupFileXfer.cs similarity index 100% rename from NTwain/Triplets/DGControl/DGControl.SetupFileXfer.cs rename to src/NTwain/Triplets/DGControl/DGControl.SetupFileXfer.cs diff --git a/NTwain/Triplets/DGControl/DGControl.SetupMemXfer.cs b/src/NTwain/Triplets/DGControl/DGControl.SetupMemXfer.cs similarity index 100% rename from NTwain/Triplets/DGControl/DGControl.SetupMemXfer.cs rename to src/NTwain/Triplets/DGControl/DGControl.SetupMemXfer.cs diff --git a/NTwain/Triplets/DGControl/DGControl.Status.cs b/src/NTwain/Triplets/DGControl/DGControl.Status.cs similarity index 100% rename from NTwain/Triplets/DGControl/DGControl.Status.cs rename to src/NTwain/Triplets/DGControl/DGControl.Status.cs diff --git a/NTwain/Triplets/DGControl/DGControl.StatusUtf8.cs b/src/NTwain/Triplets/DGControl/DGControl.StatusUtf8.cs similarity index 100% rename from NTwain/Triplets/DGControl/DGControl.StatusUtf8.cs rename to src/NTwain/Triplets/DGControl/DGControl.StatusUtf8.cs diff --git a/NTwain/Triplets/DGControl/DGControl.UserInterface.cs b/src/NTwain/Triplets/DGControl/DGControl.UserInterface.cs similarity index 100% rename from NTwain/Triplets/DGControl/DGControl.UserInterface.cs rename to src/NTwain/Triplets/DGControl/DGControl.UserInterface.cs diff --git a/NTwain/Triplets/DGControl/DGControl.XferGroup.cs b/src/NTwain/Triplets/DGControl/DGControl.XferGroup.cs similarity index 100% rename from NTwain/Triplets/DGControl/DGControl.XferGroup.cs rename to src/NTwain/Triplets/DGControl/DGControl.XferGroup.cs diff --git a/NTwain/Triplets/DGControl/DGControl.cs b/src/NTwain/Triplets/DGControl/DGControl.cs similarity index 100% rename from NTwain/Triplets/DGControl/DGControl.cs rename to src/NTwain/Triplets/DGControl/DGControl.cs diff --git a/NTwain/Triplets/DGCustom.cs b/src/NTwain/Triplets/DGCustom.cs similarity index 100% rename from NTwain/Triplets/DGCustom.cs rename to src/NTwain/Triplets/DGCustom.cs diff --git a/NTwain/Triplets/DGImage/DGImage.CieColor.cs b/src/NTwain/Triplets/DGImage/DGImage.CieColor.cs similarity index 100% rename from NTwain/Triplets/DGImage/DGImage.CieColor.cs rename to src/NTwain/Triplets/DGImage/DGImage.CieColor.cs diff --git a/NTwain/Triplets/DGImage/DGImage.ExtImageInfo.cs b/src/NTwain/Triplets/DGImage/DGImage.ExtImageInfo.cs similarity index 100% rename from NTwain/Triplets/DGImage/DGImage.ExtImageInfo.cs rename to src/NTwain/Triplets/DGImage/DGImage.ExtImageInfo.cs diff --git a/NTwain/Triplets/DGImage/DGImage.Filter.cs b/src/NTwain/Triplets/DGImage/DGImage.Filter.cs similarity index 100% rename from NTwain/Triplets/DGImage/DGImage.Filter.cs rename to src/NTwain/Triplets/DGImage/DGImage.Filter.cs diff --git a/NTwain/Triplets/DGImage/DGImage.GrayResponse.cs b/src/NTwain/Triplets/DGImage/DGImage.GrayResponse.cs similarity index 100% rename from NTwain/Triplets/DGImage/DGImage.GrayResponse.cs rename to src/NTwain/Triplets/DGImage/DGImage.GrayResponse.cs diff --git a/NTwain/Triplets/DGImage/DGImage.IccProfile.cs b/src/NTwain/Triplets/DGImage/DGImage.IccProfile.cs similarity index 100% rename from NTwain/Triplets/DGImage/DGImage.IccProfile.cs rename to src/NTwain/Triplets/DGImage/DGImage.IccProfile.cs diff --git a/NTwain/Triplets/DGImage/DGImage.ImageFileXfer.cs b/src/NTwain/Triplets/DGImage/DGImage.ImageFileXfer.cs similarity index 100% rename from NTwain/Triplets/DGImage/DGImage.ImageFileXfer.cs rename to src/NTwain/Triplets/DGImage/DGImage.ImageFileXfer.cs diff --git a/NTwain/Triplets/DGImage/DGImage.ImageInfo.cs b/src/NTwain/Triplets/DGImage/DGImage.ImageInfo.cs similarity index 100% rename from NTwain/Triplets/DGImage/DGImage.ImageInfo.cs rename to src/NTwain/Triplets/DGImage/DGImage.ImageInfo.cs diff --git a/NTwain/Triplets/DGImage/DGImage.ImageLayout.cs b/src/NTwain/Triplets/DGImage/DGImage.ImageLayout.cs similarity index 100% rename from NTwain/Triplets/DGImage/DGImage.ImageLayout.cs rename to src/NTwain/Triplets/DGImage/DGImage.ImageLayout.cs diff --git a/NTwain/Triplets/DGImage/DGImage.ImageMemFileXfer.cs b/src/NTwain/Triplets/DGImage/DGImage.ImageMemFileXfer.cs similarity index 100% rename from NTwain/Triplets/DGImage/DGImage.ImageMemFileXfer.cs rename to src/NTwain/Triplets/DGImage/DGImage.ImageMemFileXfer.cs diff --git a/NTwain/Triplets/DGImage/DGImage.ImageMemXfer.cs b/src/NTwain/Triplets/DGImage/DGImage.ImageMemXfer.cs similarity index 100% rename from NTwain/Triplets/DGImage/DGImage.ImageMemXfer.cs rename to src/NTwain/Triplets/DGImage/DGImage.ImageMemXfer.cs diff --git a/NTwain/Triplets/DGImage/DGImage.ImageNativeXfer.cs b/src/NTwain/Triplets/DGImage/DGImage.ImageNativeXfer.cs similarity index 100% rename from NTwain/Triplets/DGImage/DGImage.ImageNativeXfer.cs rename to src/NTwain/Triplets/DGImage/DGImage.ImageNativeXfer.cs diff --git a/NTwain/Triplets/DGImage/DGImage.JpegCompression.cs b/src/NTwain/Triplets/DGImage/DGImage.JpegCompression.cs similarity index 100% rename from NTwain/Triplets/DGImage/DGImage.JpegCompression.cs rename to src/NTwain/Triplets/DGImage/DGImage.JpegCompression.cs diff --git a/NTwain/Triplets/DGImage/DGImage.Palette8.cs b/src/NTwain/Triplets/DGImage/DGImage.Palette8.cs similarity index 100% rename from NTwain/Triplets/DGImage/DGImage.Palette8.cs rename to src/NTwain/Triplets/DGImage/DGImage.Palette8.cs diff --git a/NTwain/Triplets/DGImage/DGImage.RgbResponse.cs b/src/NTwain/Triplets/DGImage/DGImage.RgbResponse.cs similarity index 100% rename from NTwain/Triplets/DGImage/DGImage.RgbResponse.cs rename to src/NTwain/Triplets/DGImage/DGImage.RgbResponse.cs diff --git a/NTwain/Triplets/DGImage/DGImage.cs b/src/NTwain/Triplets/DGImage/DGImage.cs similarity index 100% rename from NTwain/Triplets/DGImage/DGImage.cs rename to src/NTwain/Triplets/DGImage/DGImage.cs diff --git a/NTwain/Triplets/Dsm.Linux.cs b/src/NTwain/Triplets/Dsm.Linux.cs similarity index 100% rename from NTwain/Triplets/Dsm.Linux.cs rename to src/NTwain/Triplets/Dsm.Linux.cs diff --git a/NTwain/Triplets/Dsm.WinNew.cs b/src/NTwain/Triplets/Dsm.WinNew.cs similarity index 100% rename from NTwain/Triplets/Dsm.WinNew.cs rename to src/NTwain/Triplets/Dsm.WinNew.cs diff --git a/NTwain/Triplets/Dsm.WinOld.cs b/src/NTwain/Triplets/Dsm.WinOld.cs similarity index 100% rename from NTwain/Triplets/Dsm.WinOld.cs rename to src/NTwain/Triplets/Dsm.WinOld.cs diff --git a/NTwain/Triplets/Dsm.cs b/src/NTwain/Triplets/Dsm.cs similarity index 100% rename from NTwain/Triplets/Dsm.cs rename to src/NTwain/Triplets/Dsm.cs diff --git a/NTwain/Triplets/TripletBase.cs b/src/NTwain/Triplets/TripletBase.cs similarity index 100% rename from NTwain/Triplets/TripletBase.cs rename to src/NTwain/Triplets/TripletBase.cs diff --git a/NTwain/Triplets/WhatsThis.txt b/src/NTwain/Triplets/WhatsThis.txt similarity index 100% rename from NTwain/Triplets/WhatsThis.txt rename to src/NTwain/Triplets/WhatsThis.txt diff --git a/NTwain/TwainException.cs b/src/NTwain/TwainException.cs similarity index 100% rename from NTwain/TwainException.cs rename to src/NTwain/TwainException.cs diff --git a/NTwain/TwainSession.cs b/src/NTwain/TwainSession.cs similarity index 100% rename from NTwain/TwainSession.cs rename to src/NTwain/TwainSession.cs diff --git a/NTwain/TwainSessionInternal.cs b/src/NTwain/TwainSessionInternal.cs similarity index 100% rename from NTwain/TwainSessionInternal.cs rename to src/NTwain/TwainSessionInternal.cs diff --git a/NTwain/TwainStateException.cs b/src/NTwain/TwainStateException.cs similarity index 100% rename from NTwain/TwainStateException.cs rename to src/NTwain/TwainStateException.cs diff --git a/NTwain/WpfImageTools.cs b/src/NTwain/WpfImageTools.cs similarity index 100% rename from NTwain/WpfImageTools.cs rename to src/NTwain/WpfImageTools.cs