From e059652cd38b17399f2cc063a19dfab9e14f11ff Mon Sep 17 00:00:00 2001 From: mii Date: Wed, 4 Nov 2020 00:25:16 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=97=E3=83=AD=E3=82=B8=E3=82=A7=E3=82=AF?= =?UTF-8?q?=E3=83=88=20=E3=83=95=E3=82=A1=E3=82=A4=E3=83=AB=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0=E3=81=97=E3=81=BE=E3=81=99=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VRCExternalTools.sln | 25 ++ VRCExternalTools/App.config | 26 ++ VRCExternalTools/App.xaml | 9 + VRCExternalTools/App.xaml.cs | 17 ++ VRCExternalTools/Friend.cs | 19 ++ VRCExternalTools/MainWindow.xaml | 57 ++++ VRCExternalTools/MainWindow.xaml.cs | 85 ++++++ VRCExternalTools/Properties/AssemblyInfo.cs | 55 ++++ .../Properties/Resources.Designer.cs | 71 +++++ VRCExternalTools/Properties/Resources.resx | 117 +++++++++ .../Properties/Settings.Designer.cs | 30 +++ VRCExternalTools/Properties/Settings.settings | 7 + VRCExternalTools/VRCAPI/VRCAPI.cs | 79 ++++++ VRCExternalTools/VRCAPI/VRCAPIBase.cs | 243 ++++++++++++++++++ VRCExternalTools/VRCAPI/VRCAuthenticator.cs | 108 ++++++++ VRCExternalTools/VRCExternalTools.csproj | 135 ++++++++++ VRCExternalTools/packages.config | 13 + 17 files changed, 1096 insertions(+) create mode 100644 VRCExternalTools.sln create mode 100644 VRCExternalTools/App.config create mode 100644 VRCExternalTools/App.xaml create mode 100644 VRCExternalTools/App.xaml.cs create mode 100644 VRCExternalTools/Friend.cs create mode 100644 VRCExternalTools/MainWindow.xaml create mode 100644 VRCExternalTools/MainWindow.xaml.cs create mode 100644 VRCExternalTools/Properties/AssemblyInfo.cs create mode 100644 VRCExternalTools/Properties/Resources.Designer.cs create mode 100644 VRCExternalTools/Properties/Resources.resx create mode 100644 VRCExternalTools/Properties/Settings.Designer.cs create mode 100644 VRCExternalTools/Properties/Settings.settings create mode 100644 VRCExternalTools/VRCAPI/VRCAPI.cs create mode 100644 VRCExternalTools/VRCAPI/VRCAPIBase.cs create mode 100644 VRCExternalTools/VRCAPI/VRCAuthenticator.cs create mode 100644 VRCExternalTools/VRCExternalTools.csproj create mode 100644 VRCExternalTools/packages.config diff --git a/VRCExternalTools.sln b/VRCExternalTools.sln new file mode 100644 index 0000000..96ee09d --- /dev/null +++ b/VRCExternalTools.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29926.136 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VRCExternalTools", "VRCExternalTools\VRCExternalTools.csproj", "{12F51A26-2AE2-4798-9087-516F7BC3B788}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {12F51A26-2AE2-4798-9087-516F7BC3B788}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {12F51A26-2AE2-4798-9087-516F7BC3B788}.Debug|Any CPU.Build.0 = Debug|Any CPU + {12F51A26-2AE2-4798-9087-516F7BC3B788}.Release|Any CPU.ActiveCfg = Release|Any CPU + {12F51A26-2AE2-4798-9087-516F7BC3B788}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {8C051168-3506-465E-A54B-B3E613B01B97} + EndGlobalSection +EndGlobal diff --git a/VRCExternalTools/App.config b/VRCExternalTools/App.config new file mode 100644 index 0000000..550a390 --- /dev/null +++ b/VRCExternalTools/App.config @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/VRCExternalTools/App.xaml b/VRCExternalTools/App.xaml new file mode 100644 index 0000000..4929cd9 --- /dev/null +++ b/VRCExternalTools/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/VRCExternalTools/App.xaml.cs b/VRCExternalTools/App.xaml.cs new file mode 100644 index 0000000..3a0c1dc --- /dev/null +++ b/VRCExternalTools/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace VRCExternalTools +{ + /// + /// App.xaml の相互作用ロジック + /// + public partial class App : Application + { + } +} diff --git a/VRCExternalTools/Friend.cs b/VRCExternalTools/Friend.cs new file mode 100644 index 0000000..79265a5 --- /dev/null +++ b/VRCExternalTools/Friend.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace VRCExternalTools +{ + class Friend + { + public String id { get; set; } + + public Friend(String userId) + { + id = userId; + } + } +} + diff --git a/VRCExternalTools/MainWindow.xaml b/VRCExternalTools/MainWindow.xaml new file mode 100644 index 0000000..d19ec9a --- /dev/null +++ b/VRCExternalTools/MainWindow.xaml @@ -0,0 +1,57 @@ + + + + + +