diff --git a/dotnet/README.md b/dotnet/README.md new file mode 100644 index 0000000..084eccc --- /dev/null +++ b/dotnet/README.md @@ -0,0 +1,41 @@ + +This directory contains a .NET interface for Rubber Band Library, +generously contributed by Jonathan Gilbert under a BSD-like +licence. The directory `rubberband-sharp` contains a managed-code +interface to Rubber Band in C#. It loads and uses the DLL defined in +`rubberband-dll`, that wraps the Rubber Band Library with an API +understood by the `rubberband-sharp` code. + +If you make use of this interface, please ensure you comply with the +terms of its licence, in addition to the GPL licence accompanying +Rubber Band Library itself: + +``` +[files in rubberband-dll and rubberband-sharp] + +Copyright 2018-2019 Jonathan Gilbert + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, copy, +modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR +ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF +CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of Jonathan Gilbert +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in this Software without prior written +authorization. +``` diff --git a/rubberband-dll/dllmain.cpp b/dotnet/rubberband-dll/dllmain.cpp similarity index 100% rename from rubberband-dll/dllmain.cpp rename to dotnet/rubberband-dll/dllmain.cpp diff --git a/rubberband-dll/rubberband-dll.cpp b/dotnet/rubberband-dll/rubberband-dll.cpp similarity index 100% rename from rubberband-dll/rubberband-dll.cpp rename to dotnet/rubberband-dll/rubberband-dll.cpp diff --git a/rubberband-dll/stdafx.cpp b/dotnet/rubberband-dll/stdafx.cpp similarity index 100% rename from rubberband-dll/stdafx.cpp rename to dotnet/rubberband-dll/stdafx.cpp diff --git a/rubberband-dll/stdafx.h b/dotnet/rubberband-dll/stdafx.h similarity index 100% rename from rubberband-dll/stdafx.h rename to dotnet/rubberband-dll/stdafx.h diff --git a/rubberband-dll/targetver.h b/dotnet/rubberband-dll/targetver.h similarity index 100% rename from rubberband-dll/targetver.h rename to dotnet/rubberband-dll/targetver.h diff --git a/rubberband-sharp/Install.ps1 b/dotnet/rubberband-sharp/Install.ps1 similarity index 100% rename from rubberband-sharp/Install.ps1 rename to dotnet/rubberband-sharp/Install.ps1 diff --git a/rubberband-sharp/RubberBandNativeMethods.cs b/dotnet/rubberband-sharp/RubberBandNativeMethods.cs similarity index 100% rename from rubberband-sharp/RubberBandNativeMethods.cs rename to dotnet/rubberband-sharp/RubberBandNativeMethods.cs diff --git a/rubberband-sharp/RubberBandNativeMethodsWin32.cs b/dotnet/rubberband-sharp/RubberBandNativeMethodsWin32.cs similarity index 100% rename from rubberband-sharp/RubberBandNativeMethodsWin32.cs rename to dotnet/rubberband-sharp/RubberBandNativeMethodsWin32.cs diff --git a/rubberband-sharp/RubberBandNativeMethodsx64.cs b/dotnet/rubberband-sharp/RubberBandNativeMethodsx64.cs similarity index 100% rename from rubberband-sharp/RubberBandNativeMethodsx64.cs rename to dotnet/rubberband-sharp/RubberBandNativeMethodsx64.cs diff --git a/rubberband-sharp/RubberBandStretcher.cs b/dotnet/rubberband-sharp/RubberBandStretcher.cs similarity index 100% rename from rubberband-sharp/RubberBandStretcher.cs rename to dotnet/rubberband-sharp/RubberBandStretcher.cs diff --git a/rubberband-sharp/rubberband-sharp.csproj b/dotnet/rubberband-sharp/rubberband-sharp.csproj similarity index 100% rename from rubberband-sharp/rubberband-sharp.csproj rename to dotnet/rubberband-sharp/rubberband-sharp.csproj diff --git a/rubberband-sharp/rubberband-sharp.nuspec b/dotnet/rubberband-sharp/rubberband-sharp.nuspec similarity index 100% rename from rubberband-sharp/rubberband-sharp.nuspec rename to dotnet/rubberband-sharp/rubberband-sharp.nuspec diff --git a/rubberband-sharp/rubberband-sharp.targets b/dotnet/rubberband-sharp/rubberband-sharp.targets similarity index 100% rename from rubberband-sharp/rubberband-sharp.targets rename to dotnet/rubberband-sharp/rubberband-sharp.targets