├── V2RayS ├── Resources │ ├── V2RayS.ico │ └── V2RaySDisable.ico ├── packages.config ├── App.config ├── Properties │ ├── Settings.settings │ ├── Settings.Designer.cs │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── App.xaml.cs ├── App.xaml ├── About.xaml ├── Logging.xaml ├── About.xaml.cs ├── Logging.xaml.cs ├── AutoStart.cs ├── WindowEditPacFile.xaml ├── WindowEditPacFile.xaml.cs ├── EditPac.cs ├── V2RayProcess.cs ├── ConfigV2RayJson.cs ├── PacHttpServer.cs ├── SysProxy.cs ├── MainWindow.xaml ├── V2RaySconfig.cs ├── V2RayS.csproj └── MainWindow.xaml.cs ├── README.md ├── V2RayS.sln ├── .gitattributes ├── .gitignore └── LICENSE /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/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /V2RayS/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /V2RayS/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /V2RayS/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace V2RayS 10 | { 11 | /// 12 | /// App.xaml 的交互逻辑 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /V2RayS/App.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /V2RayS/About.xaml: -------------------------------------------------------------------------------- 1 | 9 | 10 |