├── .github └── workflows │ └── build.yml ├── .gitignore ├── ComputeService ├── ComputeNetwork.cs ├── ComputeNetworkEndpoint.cs ├── ComputeSystem.cs └── HcsOperation.cs ├── JsonElementHelper.cs ├── ParamService.cs ├── Program.cs ├── Properties └── launchSettings.json ├── README.md ├── UNLICENSE ├── WSLAttachSwitch.csproj ├── WSLAttachSwitch.manifest └── WSLAttachSwitch.sln /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantmnf/WSLAttachSwitch/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.vs 2 | /bin 3 | /obj 4 | -------------------------------------------------------------------------------- /ComputeService/ComputeNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantmnf/WSLAttachSwitch/HEAD/ComputeService/ComputeNetwork.cs -------------------------------------------------------------------------------- /ComputeService/ComputeNetworkEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantmnf/WSLAttachSwitch/HEAD/ComputeService/ComputeNetworkEndpoint.cs -------------------------------------------------------------------------------- /ComputeService/ComputeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantmnf/WSLAttachSwitch/HEAD/ComputeService/ComputeSystem.cs -------------------------------------------------------------------------------- /ComputeService/HcsOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantmnf/WSLAttachSwitch/HEAD/ComputeService/HcsOperation.cs -------------------------------------------------------------------------------- /JsonElementHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantmnf/WSLAttachSwitch/HEAD/JsonElementHelper.cs -------------------------------------------------------------------------------- /ParamService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantmnf/WSLAttachSwitch/HEAD/ParamService.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantmnf/WSLAttachSwitch/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantmnf/WSLAttachSwitch/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantmnf/WSLAttachSwitch/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantmnf/WSLAttachSwitch/HEAD/UNLICENSE -------------------------------------------------------------------------------- /WSLAttachSwitch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantmnf/WSLAttachSwitch/HEAD/WSLAttachSwitch.csproj -------------------------------------------------------------------------------- /WSLAttachSwitch.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantmnf/WSLAttachSwitch/HEAD/WSLAttachSwitch.manifest -------------------------------------------------------------------------------- /WSLAttachSwitch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dantmnf/WSLAttachSwitch/HEAD/WSLAttachSwitch.sln --------------------------------------------------------------------------------