├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── CONTRIBUTING.md ├── Changelog.md ├── CreatePackage.bat ├── GlobalAssemblyInfo.cs ├── LICENSE ├── LegacyWrapper.Common ├── Attributes │ ├── LegacyDllImportAttribute.cs │ └── LegacyDllMethodAttribute.cs ├── ErrorHandling │ └── LegacyWrapperException.cs ├── LegacyWrapper.Common.csproj ├── Properties │ └── AssemblyInfo.cs ├── Serialization │ ├── CallData.cs │ └── CallResult.cs ├── Token │ └── PipeToken.cs └── packages.config ├── LegacyWrapper.sln ├── LegacyWrapper ├── Handler │ ├── CallRequestHandler.cs │ ├── CallRequestHandlerFactory.cs │ └── ICallRequestHandler.cs ├── Interop │ └── UnmanagedLibraryLoader.cs ├── LegacyWrapper.csproj ├── Properties │ └── AssemblyInfo.cs ├── Transport │ ├── IPipeServer.cs │ └── PipeServer.cs └── packages.config ├── LegacyWrapper32 ├── App.config ├── LegacyWrapper32.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── LegacyWrapper64 ├── App.config ├── LegacyWrapper64.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── LegacyWrapperClient ├── Architecture │ └── TargetArchitecture.cs ├── Client │ ├── WrapperClient.cs │ └── WrapperProxyFactory.cs ├── Configuration │ ├── DefaultLibraryNameProvider.cs │ ├── DefaultWrapperExecutableNameProvider.cs │ ├── ILibraryNameProvider.cs │ ├── IWrapperConfig.cs │ ├── IWrapperExecutableNameProvider.cs │ ├── WrapperConfig.cs │ └── WrapperConfigBuilder.cs ├── DynamicProxy │ └── WrapperClientInterceptor.cs ├── LegacyWrapperClient.csproj ├── LegacyWrapperClient.nuspec ├── ProcessHandling │ ├── IProcessFactory.cs │ ├── IWrapperProcessStarter.cs │ ├── MockableProcess.cs │ ├── ProcessFactory.cs │ └── WrapperProcessStarter.cs ├── Properties │ └── AssemblyInfo.cs ├── Token │ ├── GuidTokenGenerator.cs │ └── ITokenGenerator.cs ├── Transport │ ├── IPipeConnector.cs │ ├── PipeConnector.cs │ └── PipeStreamFactory.cs └── packages.config ├── LegacyWrapperTest.Integration ├── Client │ ├── EdgeCaseTests.cs │ ├── LegacyWrapperTestBase.cs │ └── WrapperClientTest.cs ├── Interface │ ├── ITestDll.cs │ └── IUser32Dll.cs ├── LegacyWrapperTest.Integration.csproj ├── Properties │ └── AssemblyInfo.cs ├── TestLibrary │ ├── LegacyWrapperTestDll32.dll │ └── LegacyWrapperTestDll64.dll ├── TestSetup │ └── TestLibraryNameProvider.cs └── packages.config ├── LegacyWrapperTest ├── LegacyWrapperClient │ ├── Client │ │ └── WrapperClientTest.cs │ ├── Configuration │ │ └── DefaultLibraryNameProviderTest.cs │ ├── DynamicProxy │ │ └── WrapperClientInterceptorTest.cs │ ├── ProcessHandling │ │ └── WrapperProcessStarterTest.cs │ ├── Token │ │ └── GuidTokenGeneratorTest.cs │ └── Transport │ │ └── PipeConnectorTest.cs ├── LegacyWrapperTest.csproj ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── LegacyWrapperTestDll ├── LegacyWrapperTestDll.def ├── LegacyWrapperTestDll.vcxproj ├── LegacyWrapperTestDll.vcxproj.filters └── Test.cpp └── Readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/Changelog.md -------------------------------------------------------------------------------- /CreatePackage.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/CreatePackage.bat -------------------------------------------------------------------------------- /GlobalAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/GlobalAssemblyInfo.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /LegacyWrapper.Common/Attributes/LegacyDllImportAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper.Common/Attributes/LegacyDllImportAttribute.cs -------------------------------------------------------------------------------- /LegacyWrapper.Common/Attributes/LegacyDllMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper.Common/Attributes/LegacyDllMethodAttribute.cs -------------------------------------------------------------------------------- /LegacyWrapper.Common/ErrorHandling/LegacyWrapperException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper.Common/ErrorHandling/LegacyWrapperException.cs -------------------------------------------------------------------------------- /LegacyWrapper.Common/LegacyWrapper.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper.Common/LegacyWrapper.Common.csproj -------------------------------------------------------------------------------- /LegacyWrapper.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LegacyWrapper.Common/Serialization/CallData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper.Common/Serialization/CallData.cs -------------------------------------------------------------------------------- /LegacyWrapper.Common/Serialization/CallResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper.Common/Serialization/CallResult.cs -------------------------------------------------------------------------------- /LegacyWrapper.Common/Token/PipeToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper.Common/Token/PipeToken.cs -------------------------------------------------------------------------------- /LegacyWrapper.Common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper.Common/packages.config -------------------------------------------------------------------------------- /LegacyWrapper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper.sln -------------------------------------------------------------------------------- /LegacyWrapper/Handler/CallRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper/Handler/CallRequestHandler.cs -------------------------------------------------------------------------------- /LegacyWrapper/Handler/CallRequestHandlerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper/Handler/CallRequestHandlerFactory.cs -------------------------------------------------------------------------------- /LegacyWrapper/Handler/ICallRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper/Handler/ICallRequestHandler.cs -------------------------------------------------------------------------------- /LegacyWrapper/Interop/UnmanagedLibraryLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper/Interop/UnmanagedLibraryLoader.cs -------------------------------------------------------------------------------- /LegacyWrapper/LegacyWrapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper/LegacyWrapper.csproj -------------------------------------------------------------------------------- /LegacyWrapper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LegacyWrapper/Transport/IPipeServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper/Transport/IPipeServer.cs -------------------------------------------------------------------------------- /LegacyWrapper/Transport/PipeServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper/Transport/PipeServer.cs -------------------------------------------------------------------------------- /LegacyWrapper/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper/packages.config -------------------------------------------------------------------------------- /LegacyWrapper32/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper32/App.config -------------------------------------------------------------------------------- /LegacyWrapper32/LegacyWrapper32.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper32/LegacyWrapper32.csproj -------------------------------------------------------------------------------- /LegacyWrapper32/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper32/Program.cs -------------------------------------------------------------------------------- /LegacyWrapper32/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper32/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LegacyWrapper32/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper32/packages.config -------------------------------------------------------------------------------- /LegacyWrapper64/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper64/App.config -------------------------------------------------------------------------------- /LegacyWrapper64/LegacyWrapper64.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper64/LegacyWrapper64.csproj -------------------------------------------------------------------------------- /LegacyWrapper64/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper64/Program.cs -------------------------------------------------------------------------------- /LegacyWrapper64/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper64/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LegacyWrapper64/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapper64/packages.config -------------------------------------------------------------------------------- /LegacyWrapperClient/Architecture/TargetArchitecture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/Architecture/TargetArchitecture.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/Client/WrapperClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/Client/WrapperClient.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/Client/WrapperProxyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/Client/WrapperProxyFactory.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/Configuration/DefaultLibraryNameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/Configuration/DefaultLibraryNameProvider.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/Configuration/DefaultWrapperExecutableNameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/Configuration/DefaultWrapperExecutableNameProvider.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/Configuration/ILibraryNameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/Configuration/ILibraryNameProvider.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/Configuration/IWrapperConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/Configuration/IWrapperConfig.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/Configuration/IWrapperExecutableNameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/Configuration/IWrapperExecutableNameProvider.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/Configuration/WrapperConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/Configuration/WrapperConfig.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/Configuration/WrapperConfigBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/Configuration/WrapperConfigBuilder.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/DynamicProxy/WrapperClientInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/DynamicProxy/WrapperClientInterceptor.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/LegacyWrapperClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/LegacyWrapperClient.csproj -------------------------------------------------------------------------------- /LegacyWrapperClient/LegacyWrapperClient.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/LegacyWrapperClient.nuspec -------------------------------------------------------------------------------- /LegacyWrapperClient/ProcessHandling/IProcessFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/ProcessHandling/IProcessFactory.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/ProcessHandling/IWrapperProcessStarter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/ProcessHandling/IWrapperProcessStarter.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/ProcessHandling/MockableProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/ProcessHandling/MockableProcess.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/ProcessHandling/ProcessFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/ProcessHandling/ProcessFactory.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/ProcessHandling/WrapperProcessStarter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/ProcessHandling/WrapperProcessStarter.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/Token/GuidTokenGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/Token/GuidTokenGenerator.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/Token/ITokenGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/Token/ITokenGenerator.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/Transport/IPipeConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/Transport/IPipeConnector.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/Transport/PipeConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/Transport/PipeConnector.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/Transport/PipeStreamFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/Transport/PipeStreamFactory.cs -------------------------------------------------------------------------------- /LegacyWrapperClient/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperClient/packages.config -------------------------------------------------------------------------------- /LegacyWrapperTest.Integration/Client/EdgeCaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTest.Integration/Client/EdgeCaseTests.cs -------------------------------------------------------------------------------- /LegacyWrapperTest.Integration/Client/LegacyWrapperTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTest.Integration/Client/LegacyWrapperTestBase.cs -------------------------------------------------------------------------------- /LegacyWrapperTest.Integration/Client/WrapperClientTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTest.Integration/Client/WrapperClientTest.cs -------------------------------------------------------------------------------- /LegacyWrapperTest.Integration/Interface/ITestDll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTest.Integration/Interface/ITestDll.cs -------------------------------------------------------------------------------- /LegacyWrapperTest.Integration/Interface/IUser32Dll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTest.Integration/Interface/IUser32Dll.cs -------------------------------------------------------------------------------- /LegacyWrapperTest.Integration/LegacyWrapperTest.Integration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTest.Integration/LegacyWrapperTest.Integration.csproj -------------------------------------------------------------------------------- /LegacyWrapperTest.Integration/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTest.Integration/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LegacyWrapperTest.Integration/TestLibrary/LegacyWrapperTestDll32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTest.Integration/TestLibrary/LegacyWrapperTestDll32.dll -------------------------------------------------------------------------------- /LegacyWrapperTest.Integration/TestLibrary/LegacyWrapperTestDll64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTest.Integration/TestLibrary/LegacyWrapperTestDll64.dll -------------------------------------------------------------------------------- /LegacyWrapperTest.Integration/TestSetup/TestLibraryNameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTest.Integration/TestSetup/TestLibraryNameProvider.cs -------------------------------------------------------------------------------- /LegacyWrapperTest.Integration/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTest.Integration/packages.config -------------------------------------------------------------------------------- /LegacyWrapperTest/LegacyWrapperClient/Client/WrapperClientTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTest/LegacyWrapperClient/Client/WrapperClientTest.cs -------------------------------------------------------------------------------- /LegacyWrapperTest/LegacyWrapperClient/Configuration/DefaultLibraryNameProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTest/LegacyWrapperClient/Configuration/DefaultLibraryNameProviderTest.cs -------------------------------------------------------------------------------- /LegacyWrapperTest/LegacyWrapperClient/DynamicProxy/WrapperClientInterceptorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTest/LegacyWrapperClient/DynamicProxy/WrapperClientInterceptorTest.cs -------------------------------------------------------------------------------- /LegacyWrapperTest/LegacyWrapperClient/ProcessHandling/WrapperProcessStarterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTest/LegacyWrapperClient/ProcessHandling/WrapperProcessStarterTest.cs -------------------------------------------------------------------------------- /LegacyWrapperTest/LegacyWrapperClient/Token/GuidTokenGeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTest/LegacyWrapperClient/Token/GuidTokenGeneratorTest.cs -------------------------------------------------------------------------------- /LegacyWrapperTest/LegacyWrapperClient/Transport/PipeConnectorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTest/LegacyWrapperClient/Transport/PipeConnectorTest.cs -------------------------------------------------------------------------------- /LegacyWrapperTest/LegacyWrapperTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTest/LegacyWrapperTest.csproj -------------------------------------------------------------------------------- /LegacyWrapperTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LegacyWrapperTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTest/packages.config -------------------------------------------------------------------------------- /LegacyWrapperTestDll/LegacyWrapperTestDll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTestDll/LegacyWrapperTestDll.def -------------------------------------------------------------------------------- /LegacyWrapperTestDll/LegacyWrapperTestDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTestDll/LegacyWrapperTestDll.vcxproj -------------------------------------------------------------------------------- /LegacyWrapperTestDll/LegacyWrapperTestDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTestDll/LegacyWrapperTestDll.vcxproj.filters -------------------------------------------------------------------------------- /LegacyWrapperTestDll/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/LegacyWrapperTestDll/Test.cpp -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodefoundryDE/LegacyWrapper/HEAD/Readme.md --------------------------------------------------------------------------------