├── .gitignore ├── LICENSE ├── README.md ├── SnipeIT-bPAC.sln ├── SnipeIT-bPAC ├── App.config ├── HttpListenerContextExtension.cs ├── Interop.bpac.dll ├── Program.cs ├── Properties │ ├── Settings.Designer.cs │ └── Settings.settings ├── ServerForm.Designer.cs ├── ServerForm.cs ├── ServerForm.resx └── SnipeIT-bPAC.csproj └── labels.blade.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xWTF/SnipeIT-bPAC/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xWTF/SnipeIT-bPAC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xWTF/SnipeIT-bPAC/HEAD/README.md -------------------------------------------------------------------------------- /SnipeIT-bPAC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xWTF/SnipeIT-bPAC/HEAD/SnipeIT-bPAC.sln -------------------------------------------------------------------------------- /SnipeIT-bPAC/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xWTF/SnipeIT-bPAC/HEAD/SnipeIT-bPAC/App.config -------------------------------------------------------------------------------- /SnipeIT-bPAC/HttpListenerContextExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xWTF/SnipeIT-bPAC/HEAD/SnipeIT-bPAC/HttpListenerContextExtension.cs -------------------------------------------------------------------------------- /SnipeIT-bPAC/Interop.bpac.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xWTF/SnipeIT-bPAC/HEAD/SnipeIT-bPAC/Interop.bpac.dll -------------------------------------------------------------------------------- /SnipeIT-bPAC/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xWTF/SnipeIT-bPAC/HEAD/SnipeIT-bPAC/Program.cs -------------------------------------------------------------------------------- /SnipeIT-bPAC/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xWTF/SnipeIT-bPAC/HEAD/SnipeIT-bPAC/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SnipeIT-bPAC/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xWTF/SnipeIT-bPAC/HEAD/SnipeIT-bPAC/Properties/Settings.settings -------------------------------------------------------------------------------- /SnipeIT-bPAC/ServerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xWTF/SnipeIT-bPAC/HEAD/SnipeIT-bPAC/ServerForm.Designer.cs -------------------------------------------------------------------------------- /SnipeIT-bPAC/ServerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xWTF/SnipeIT-bPAC/HEAD/SnipeIT-bPAC/ServerForm.cs -------------------------------------------------------------------------------- /SnipeIT-bPAC/ServerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xWTF/SnipeIT-bPAC/HEAD/SnipeIT-bPAC/ServerForm.resx -------------------------------------------------------------------------------- /SnipeIT-bPAC/SnipeIT-bPAC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xWTF/SnipeIT-bPAC/HEAD/SnipeIT-bPAC/SnipeIT-bPAC.csproj -------------------------------------------------------------------------------- /labels.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xWTF/SnipeIT-bPAC/HEAD/labels.blade.php --------------------------------------------------------------------------------