commit 982a5cc65420d2c8c0721a855d504a77e8c27ceb Author: saile2204 Date: Sun Sep 12 02:42:21 2021 +0200 Initial commit diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..30821d7 --- /dev/null +++ b/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace VoicemeeterSliderControl +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} diff --git a/SliderSet.cs b/SliderSet.cs new file mode 100644 index 0000000..dad6c38 --- /dev/null +++ b/SliderSet.cs @@ -0,0 +1,7 @@ +namespace VoicemeeterSliderControl +{ + public class SliderSet + { + + } +} \ No newline at end of file diff --git a/Sliders.cs b/Sliders.cs new file mode 100644 index 0000000..bc54737 --- /dev/null +++ b/Sliders.cs @@ -0,0 +1,7 @@ +namespace VoicemeeterSliderControl +{ + public class Sliders + { + + + } +} \ No newline at end of file diff --git a/VoicemeeterSliderControl.csproj b/VoicemeeterSliderControl.csproj new file mode 100644 index 0000000..9590466 --- /dev/null +++ b/VoicemeeterSliderControl.csproj @@ -0,0 +1,8 @@ + + + + Exe + net5.0 + + + diff --git a/VoicemeeterSliderControl.sln b/VoicemeeterSliderControl.sln new file mode 100644 index 0000000..9c3c86e --- /dev/null +++ b/VoicemeeterSliderControl.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VoicemeeterSliderControl", "VoicemeeterSliderControl.csproj", "{21650B59-0EEF-46AB-8663-DB1162392300}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {21650B59-0EEF-46AB-8663-DB1162392300}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {21650B59-0EEF-46AB-8663-DB1162392300}.Debug|Any CPU.Build.0 = Debug|Any CPU + {21650B59-0EEF-46AB-8663-DB1162392300}.Release|Any CPU.ActiveCfg = Release|Any CPU + {21650B59-0EEF-46AB-8663-DB1162392300}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/VoicemeeterSliderControl.sln.DotSettings.user b/VoicemeeterSliderControl.sln.DotSettings.user new file mode 100644 index 0000000..3f72a84 --- /dev/null +++ b/VoicemeeterSliderControl.sln.DotSettings.user @@ -0,0 +1,4 @@ + + <AssemblyExplorer> + <Assembly Path="C:\Program Files (x86)\VB\Voicemeeter\VoicemeeterRemote64.dll" /> +</AssemblyExplorer> \ No newline at end of file diff --git a/global.json b/global.json new file mode 100644 index 0000000..4db6a48 --- /dev/null +++ b/global.json @@ -0,0 +1,7 @@ +{ + "sdk": { + "version": "5.0", + "rollForward": "latestMajor", + "allowPrerelease": false + } +} \ No newline at end of file