diff --git a/V2Switcher.sln b/V2Switcher.sln
new file mode 100644
index 0000000..9c0a6bb
--- /dev/null
+++ b/V2Switcher.sln
@@ -0,0 +1,22 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 15
+VisualStudioVersion = 15.0.26430.14
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "V2Switcher", "V2Switcher\V2Switcher.csproj", "{4C87BF6C-5F4A-4C03-ADCA-4FD38FCFAF61}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {4C87BF6C-5F4A-4C03-ADCA-4FD38FCFAF61}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {4C87BF6C-5F4A-4C03-ADCA-4FD38FCFAF61}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {4C87BF6C-5F4A-4C03-ADCA-4FD38FCFAF61}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {4C87BF6C-5F4A-4C03-ADCA-4FD38FCFAF61}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/V2Switcher/App.config b/V2Switcher/App.config
new file mode 100644
index 0000000..a3f4642
--- /dev/null
+++ b/V2Switcher/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/V2Switcher/Config.cs b/V2Switcher/Config.cs
new file mode 100644
index 0000000..3d62197
--- /dev/null
+++ b/V2Switcher/Config.cs
@@ -0,0 +1,34 @@
+using Newtonsoft.Json.Linq;
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace V2Switcher
+{
+ class Config
+ {
+ private string configPath;
+ private string proxyAddr;
+ private string proxyName;
+ public Config(string configName)
+ {
+ configPath = configName+".json";
+ proxyAddr = "127.0.0.1:" + JObject.Parse(File.ReadAllText(configPath)).SelectToken("inbound.port").ToString();
+ proxyName = configName;
+ }
+ public string Filename {
+ get { return configPath; }
+ }
+ public string Name {
+ get { return proxyName; }
+ }
+ public string Address {
+ get {
+ return proxyAddr;
+ }
+ }
+ }
+}
diff --git a/V2Switcher/ProcessIcon.cs b/V2Switcher/ProcessIcon.cs
new file mode 100644
index 0000000..1f6c643
--- /dev/null
+++ b/V2Switcher/ProcessIcon.cs
@@ -0,0 +1,102 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using V2Switcher.Properties;
+using System.Diagnostics;
+using System.ComponentModel;
+
+namespace V2Switcher
+{
+ public class ProcessIcon : IDisposable
+ {
+ NotifyIcon ni;
+ ContextMenuStrip cm;
+ ProxyManager pm;
+
+ public ProcessIcon()
+ {
+ ni = new NotifyIcon();
+ cm = new ContextMenuStrip();
+ cm.Opening += new CancelEventHandler(OnContextMenuOpening);
+ pm = ProxyManager.GetInstance();
+ pm.Current = new Config(Util.loadDefault());
+ }
+
+ public void Display()
+ {
+ ni.MouseDoubleClick += new MouseEventHandler(ni_MouseClick);
+ ni.Icon = pm.Enable ? Resource.v2enable:Resource.v2disable;
+ ni.Text = "V2Switcher";
+ ni.Visible = true;
+ ni.ContextMenuStrip = cm;
+ }
+
+ public void Dispose()
+ {
+ ni.Dispose();
+ }
+
+ void ni_MouseClick(object sender, MouseEventArgs e)
+ {
+ if (e.Button == MouseButtons.Left)
+ {
+ pm.Enable = !pm.Enable;
+ ni.Icon = pm.Enable ? Resource.v2enable : Resource.v2disable;
+ }
+ }
+
+ void OnContextMenuOpening(object sender, CancelEventArgs e)
+ {
+ ToolStripMenuItem item;
+ ToolStripSeparator sep;
+
+ cm.Items.Clear();
+ item = new ToolStripMenuItem();
+ item.Text = "启用代理";
+ item.Click += new System.EventHandler(Proxy_Click);
+ item.Checked = pm.Enable;
+ cm.Items.Add(item);
+
+ sep = new ToolStripSeparator();
+ cm.Items.Add(sep);
+
+ foreach (string configname in Util.configsName)
+ {
+ item = new ToolStripMenuItem();
+ item.Text = configname;
+ item.Click += new System.EventHandler(Server_Click);
+ item.Checked = pm.currentConfigName == configname;
+ cm.Items.Add(item);
+ }
+
+ sep = new ToolStripSeparator();
+ cm.Items.Add(sep);
+
+ item = new ToolStripMenuItem();
+ item.Text = "退出";
+ item.Click += new System.EventHandler(Exit_Click);
+ cm.Items.Add(item);
+ }
+
+ void Exit_Click(object sender, EventArgs e)
+ {
+ Array.ForEach(Process.GetProcessesByName(Util.executeName), x => x.Kill());
+ Application.Exit();
+ }
+
+ void Proxy_Click(object sender, EventArgs e)
+ {
+ pm.Enable =! pm.Enable;
+ ni.Icon = pm.Enable ? Resource.v2enable : Resource.v2disable;
+ }
+
+ void Server_Click(object sender, EventArgs e)
+ {
+ ToolStripMenuItem Caller = (ToolStripMenuItem)sender;
+ pm.Current = new Config(Caller.Text);
+ }
+ }
+}
diff --git a/V2Switcher/Program.cs b/V2Switcher/Program.cs
new file mode 100644
index 0000000..1b678ce
--- /dev/null
+++ b/V2Switcher/Program.cs
@@ -0,0 +1,33 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace V2Switcher
+{
+ static class Program
+ {
+ ///
+ /// 应用程序的主入口点。
+ ///
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ if (Util.checkEnvironment() == false)
+ {
+ MessageBox.Show("需要V2Ray核心程序和至少一个Json配置文件","V2Switcher无法启动",MessageBoxButtons.OK,MessageBoxIcon.Stop);
+ }
+ else
+ {
+ using (ProcessIcon pi = new ProcessIcon())
+ {
+ pi.Display();
+ Application.Run();
+ }
+ }
+ }
+ }
+}
diff --git a/V2Switcher/Properties/AssemblyInfo.cs b/V2Switcher/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..f3ec8db
--- /dev/null
+++ b/V2Switcher/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// 有关程序集的一般信息由以下
+// 控制。更改这些特性值可修改
+// 与程序集关联的信息。
+[assembly: AssemblyTitle("V2Switcher")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("V2Switcher")]
+[assembly: AssemblyCopyright("Copyright © 2017")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// 将 ComVisible 设置为 false 会使此程序集中的类型
+//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
+//请将此类型的 ComVisible 特性设置为 true。
+[assembly: ComVisible(false)]
+
+// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
+[assembly: Guid("4c87bf6c-5f4a-4c03-adca-4fd38fcfaf61")]
+
+// 程序集的版本信息由下列四个值组成:
+//
+// 主版本
+// 次版本
+// 生成号
+// 修订号
+//
+// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
+// 方法是按如下所示使用“*”: :
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/V2Switcher/Properties/Resource.Designer.cs b/V2Switcher/Properties/Resource.Designer.cs
new file mode 100644
index 0000000..b863254
--- /dev/null
+++ b/V2Switcher/Properties/Resource.Designer.cs
@@ -0,0 +1,83 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+namespace V2Switcher.Properties {
+ using System;
+
+
+ ///
+ /// 一个强类型的资源类,用于查找本地化的字符串等。
+ ///
+ // 此类是由 StronglyTypedResourceBuilder
+ // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
+ // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen
+ // (以 /str 作为命令选项),或重新生成 VS 项目。
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resource {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resource() {
+ }
+
+ ///
+ /// 返回此类使用的缓存的 ResourceManager 实例。
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager {
+ get {
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("V2Switcher.Properties.Resource", typeof(Resource).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// 使用此强类型资源类,为所有资源查找
+ /// 重写当前线程的 CurrentUICulture 属性。
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture {
+ get {
+ return resourceCulture;
+ }
+ set {
+ resourceCulture = value;
+ }
+ }
+
+ ///
+ /// 查找类似于 (图标) 的 System.Drawing.Icon 类型的本地化资源。
+ ///
+ internal static System.Drawing.Icon v2disable {
+ get {
+ object obj = ResourceManager.GetObject("v2disable", resourceCulture);
+ return ((System.Drawing.Icon)(obj));
+ }
+ }
+
+ ///
+ /// 查找类似于 (图标) 的 System.Drawing.Icon 类型的本地化资源。
+ ///
+ internal static System.Drawing.Icon v2enable {
+ get {
+ object obj = ResourceManager.GetObject("v2enable", resourceCulture);
+ return ((System.Drawing.Icon)(obj));
+ }
+ }
+ }
+}
diff --git a/V2Switcher/Properties/Resource.resx b/V2Switcher/Properties/Resource.resx
new file mode 100644
index 0000000..9a8f89e
--- /dev/null
+++ b/V2Switcher/Properties/Resource.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\v2disable.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\v2enable.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/V2Switcher/Properties/Settings.Designer.cs b/V2Switcher/Properties/Settings.Designer.cs
new file mode 100644
index 0000000..9bdf2ab
--- /dev/null
+++ b/V2Switcher/Properties/Settings.Designer.cs
@@ -0,0 +1,26 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+namespace V2Switcher.Properties {
+
+
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.1.0.0")]
+ internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
+
+ private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+ public static Settings Default {
+ get {
+ return defaultInstance;
+ }
+ }
+ }
+}
diff --git a/V2Switcher/Properties/Settings.settings b/V2Switcher/Properties/Settings.settings
new file mode 100644
index 0000000..abf36c5
--- /dev/null
+++ b/V2Switcher/Properties/Settings.settings
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/V2Switcher/ProxyManager.cs b/V2Switcher/ProxyManager.cs
new file mode 100644
index 0000000..2f7380f
--- /dev/null
+++ b/V2Switcher/ProxyManager.cs
@@ -0,0 +1,78 @@
+using Microsoft.Win32;
+using System;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace V2Switcher
+{
+ class ProxyManager
+ {
+ private static ProxyManager uniqueInstance; // 单例句柄
+
+ private Config current; // 当前配置
+
+ public Config Current {
+ get {
+ return current;
+ }
+ set {
+ current = value;
+ Util.saveDefault(current.Name);
+ if (Enable)
+ {
+ Array.ForEach(Process.GetProcessesByName(Util.executeName),x=>x.Kill());
+ Process.Start(Util.executeName, "-config " + current.Filename);
+ RegistryKey internetSetting = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Internet Settings",true);
+ internetSetting.SetValue("ProxyServer", current.Address, RegistryValueKind.String);
+ internetSetting.Close();
+ }
+ }
+ }
+
+ public static ProxyManager GetInstance()
+ {
+ if (uniqueInstance == null)
+ {
+ uniqueInstance = new ProxyManager();
+ }
+ return uniqueInstance;
+ }
+
+ private ProxyManager()
+ {
+ }
+
+ public string currentConfigName {
+ get { return current?.Name ?? ""; }
+ }
+
+ public bool Enable {
+ get {
+ RegistryKey internetSetting = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Internet Settings");
+ bool enable = Convert.ToBoolean(internetSetting.GetValue("ProxyEnable"));
+ internetSetting.Close();
+ return enable;
+ }
+ set {
+ RegistryKey internetSetting = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Internet Settings",true);
+ if (value)
+ {
+ internetSetting.SetValue("ProxyServer", current.Address, RegistryValueKind.String);
+ internetSetting.SetValue("ProxyEnable", 1, RegistryValueKind.DWord);
+ Process.Start(Util.executeName, "-config " + current.Filename);
+ }
+ else
+ {
+ Array.ForEach(Process.GetProcessesByName(Util.executeName), x => x.Kill());
+ internetSetting.SetValue("ProxyEnable", 0, RegistryValueKind.DWord);
+ }
+ internetSetting.Close();
+ }
+ }
+ }
+}
diff --git a/V2Switcher/Resources/v2disable.ico b/V2Switcher/Resources/v2disable.ico
new file mode 100644
index 0000000..cac8f4e
Binary files /dev/null and b/V2Switcher/Resources/v2disable.ico differ
diff --git a/V2Switcher/Resources/v2enable.ico b/V2Switcher/Resources/v2enable.ico
new file mode 100644
index 0000000..f5a652d
Binary files /dev/null and b/V2Switcher/Resources/v2enable.ico differ
diff --git a/V2Switcher/Util.cs b/V2Switcher/Util.cs
new file mode 100644
index 0000000..783433e
--- /dev/null
+++ b/V2Switcher/Util.cs
@@ -0,0 +1,53 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace V2Switcher
+{
+ static class Util
+ {
+ public static string[] configsName {
+ get { return Directory.GetFiles(Application.StartupPath, "*.json").Select(e => Path.GetFileNameWithoutExtension(e)).ToArray(); }
+ }
+ private static string exeFileName;
+ public static string executeName {
+ get { return exeFileName; }
+ }
+
+ public static bool checkEnvironment(){
+ bool hasJson = configsName != null && configsName.Length != 0;
+ bool hasCore = false;
+ if (File.Exists("v2ray.exe"))
+ {
+ exeFileName = "v2ray";
+ hasCore = true;
+ }
+ if (File.Exists("wv2ray.exe"))
+ {
+ exeFileName = "wv2ray";
+ hasCore = true;
+ }
+ return hasJson && hasCore;
+ }
+ public static void saveDefault(string cfgName)
+ {
+ File.WriteAllText("default.lck", cfgName);
+ }
+ public static string loadDefault()
+ {
+ if (File.Exists("default.lck"))
+ {
+ string cfgName = File.ReadAllText("default.lck").Trim();
+ return File.Exists(cfgName+".json") ? cfgName: configsName[0];
+ }
+ else
+ {
+ return configsName[0];
+ }
+ }
+ }
+}
diff --git a/V2Switcher/V2Switcher.csproj b/V2Switcher/V2Switcher.csproj
new file mode 100644
index 0000000..01ea679
--- /dev/null
+++ b/V2Switcher/V2Switcher.csproj
@@ -0,0 +1,99 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {4C87BF6C-5F4A-4C03-ADCA-4FD38FCFAF61}
+ WinExe
+ V2Switcher
+ V2Switcher
+ v4.5.2
+ 512
+ true
+
+
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+ false
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+ false
+
+
+ V2Switcher.Program
+
+
+ Resources\v2enable.ico
+
+
+ true
+
+
+
+ ..\..\Newtonsoft.Json.dll
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ResXFileCodeGenerator
+ Resource.Designer.cs
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+ True
+ True
+ Resource.resx
+
+
+ True
+ Settings.settings
+ True
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/V2Switcher/obj/Debug/CoreCompileInputs.cache b/V2Switcher/obj/Debug/CoreCompileInputs.cache
new file mode 100644
index 0000000..529a45c
--- /dev/null
+++ b/V2Switcher/obj/Debug/CoreCompileInputs.cache
@@ -0,0 +1 @@
+9e5fc7cc7ab580c918d7662a1d74839ac7f4a67a
diff --git a/V2Switcher/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/V2Switcher/obj/Debug/DesignTimeResolveAssemblyReferences.cache
new file mode 100644
index 0000000..1b7c8a9
Binary files /dev/null and b/V2Switcher/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ
diff --git a/V2Switcher/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/V2Switcher/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
new file mode 100644
index 0000000..8b67de3
Binary files /dev/null and b/V2Switcher/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/V2Switcher/obj/Debug/TempPE/Properties.Resource.Designer.cs.dll b/V2Switcher/obj/Debug/TempPE/Properties.Resource.Designer.cs.dll
new file mode 100644
index 0000000..bb02ffb
Binary files /dev/null and b/V2Switcher/obj/Debug/TempPE/Properties.Resource.Designer.cs.dll differ
diff --git a/V2Switcher/obj/Debug/V2Switcher.Properties.Resource.resources b/V2Switcher/obj/Debug/V2Switcher.Properties.Resource.resources
new file mode 100644
index 0000000..c529cbc
Binary files /dev/null and b/V2Switcher/obj/Debug/V2Switcher.Properties.Resource.resources differ
diff --git a/V2Switcher/obj/Debug/V2Switcher.csproj.FileListAbsolute.txt b/V2Switcher/obj/Debug/V2Switcher.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..21db13b
--- /dev/null
+++ b/V2Switcher/obj/Debug/V2Switcher.csproj.FileListAbsolute.txt
@@ -0,0 +1,9 @@
+D:\workspace\V2Switcher\V2Switcher\bin\Debug\V2Switcher.exe.config
+D:\workspace\V2Switcher\V2Switcher\bin\Debug\V2Switcher.exe
+D:\workspace\V2Switcher\V2Switcher\bin\Debug\V2Switcher.pdb
+D:\workspace\V2Switcher\V2Switcher\obj\Debug\V2Switcher.csprojResolveAssemblyReference.cache
+D:\workspace\V2Switcher\V2Switcher\obj\Debug\V2Switcher.csproj.GenerateResource.Cache
+D:\workspace\V2Switcher\V2Switcher\obj\Debug\V2Switcher.exe
+D:\workspace\V2Switcher\V2Switcher\obj\Debug\V2Switcher.pdb
+D:\workspace\V2Switcher\V2Switcher\obj\Debug\V2Switcher.Properties.Resource.resources
+D:\workspace\V2Switcher\V2Switcher\bin\Debug\Newtonsoft.Json.dll
diff --git a/V2Switcher/obj/Debug/V2Switcher.csproj.GenerateResource.Cache b/V2Switcher/obj/Debug/V2Switcher.csproj.GenerateResource.Cache
new file mode 100644
index 0000000..d6f2733
Binary files /dev/null and b/V2Switcher/obj/Debug/V2Switcher.csproj.GenerateResource.Cache differ
diff --git a/V2Switcher/obj/Debug/V2Switcher.csprojResolveAssemblyReference.cache b/V2Switcher/obj/Debug/V2Switcher.csprojResolveAssemblyReference.cache
new file mode 100644
index 0000000..d5c3a7d
Binary files /dev/null and b/V2Switcher/obj/Debug/V2Switcher.csprojResolveAssemblyReference.cache differ
diff --git a/V2Switcher/obj/Debug/V2Switcher.exe b/V2Switcher/obj/Debug/V2Switcher.exe
new file mode 100644
index 0000000..85dc48b
Binary files /dev/null and b/V2Switcher/obj/Debug/V2Switcher.exe differ
diff --git a/V2Switcher/obj/Debug/V2Switcher.pdb b/V2Switcher/obj/Debug/V2Switcher.pdb
new file mode 100644
index 0000000..9081455
Binary files /dev/null and b/V2Switcher/obj/Debug/V2Switcher.pdb differ
diff --git a/V2Switcher/obj/Release/CoreCompileInputs.cache b/V2Switcher/obj/Release/CoreCompileInputs.cache
new file mode 100644
index 0000000..529a45c
--- /dev/null
+++ b/V2Switcher/obj/Release/CoreCompileInputs.cache
@@ -0,0 +1 @@
+9e5fc7cc7ab580c918d7662a1d74839ac7f4a67a
diff --git a/V2Switcher/obj/Release/DesignTimeResolveAssemblyReferences.cache b/V2Switcher/obj/Release/DesignTimeResolveAssemblyReferences.cache
new file mode 100644
index 0000000..4bb1760
Binary files /dev/null and b/V2Switcher/obj/Release/DesignTimeResolveAssemblyReferences.cache differ
diff --git a/V2Switcher/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/V2Switcher/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache
new file mode 100644
index 0000000..23bcead
Binary files /dev/null and b/V2Switcher/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/V2Switcher/obj/Release/TempPE/Properties.Resource.Designer.cs.dll b/V2Switcher/obj/Release/TempPE/Properties.Resource.Designer.cs.dll
new file mode 100644
index 0000000..a3dd6ad
Binary files /dev/null and b/V2Switcher/obj/Release/TempPE/Properties.Resource.Designer.cs.dll differ