├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── V2RayS.sln └── V2RayS ├── About.xaml ├── About.xaml.cs ├── App.config ├── App.xaml ├── App.xaml.cs ├── AutoStart.cs ├── ConfigV2RayJson.cs ├── EditPac.cs ├── Logging.xaml ├── Logging.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── PacHttpServer.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Resources ├── V2RayS.ico └── V2RaySDisable.ico ├── SysProxy.cs ├── V2RayProcess.cs ├── V2RayS.csproj ├── V2RaySconfig.cs ├── WindowEditPacFile.xaml ├── WindowEditPacFile.xaml.cs └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/README.md -------------------------------------------------------------------------------- /V2RayS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS.sln -------------------------------------------------------------------------------- /V2RayS/About.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/About.xaml -------------------------------------------------------------------------------- /V2RayS/About.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/About.xaml.cs -------------------------------------------------------------------------------- /V2RayS/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/App.config -------------------------------------------------------------------------------- /V2RayS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/App.xaml -------------------------------------------------------------------------------- /V2RayS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/App.xaml.cs -------------------------------------------------------------------------------- /V2RayS/AutoStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/AutoStart.cs -------------------------------------------------------------------------------- /V2RayS/ConfigV2RayJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/ConfigV2RayJson.cs -------------------------------------------------------------------------------- /V2RayS/EditPac.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/EditPac.cs -------------------------------------------------------------------------------- /V2RayS/Logging.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/Logging.xaml -------------------------------------------------------------------------------- /V2RayS/Logging.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/Logging.xaml.cs -------------------------------------------------------------------------------- /V2RayS/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/MainWindow.xaml -------------------------------------------------------------------------------- /V2RayS/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/MainWindow.xaml.cs -------------------------------------------------------------------------------- /V2RayS/PacHttpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/PacHttpServer.cs -------------------------------------------------------------------------------- /V2RayS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /V2RayS/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /V2RayS/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/Properties/Resources.resx -------------------------------------------------------------------------------- /V2RayS/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /V2RayS/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/Properties/Settings.settings -------------------------------------------------------------------------------- /V2RayS/Resources/V2RayS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/Resources/V2RayS.ico -------------------------------------------------------------------------------- /V2RayS/Resources/V2RaySDisable.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/Resources/V2RaySDisable.ico -------------------------------------------------------------------------------- /V2RayS/SysProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/SysProxy.cs -------------------------------------------------------------------------------- /V2RayS/V2RayProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/V2RayProcess.cs -------------------------------------------------------------------------------- /V2RayS/V2RayS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/V2RayS.csproj -------------------------------------------------------------------------------- /V2RayS/V2RaySconfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/V2RaySconfig.cs -------------------------------------------------------------------------------- /V2RayS/WindowEditPacFile.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/WindowEditPacFile.xaml -------------------------------------------------------------------------------- /V2RayS/WindowEditPacFile.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/WindowEditPacFile.xaml.cs -------------------------------------------------------------------------------- /V2RayS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinlor/V2RayS/HEAD/V2RayS/packages.config --------------------------------------------------------------------------------