├── .gitattributes ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── managed-native-desktop ├── Dockerfile ├── Install.cmd └── README.md ├── native-desktop ├── Dockerfile ├── Install.cmd └── README.md └── web ├── Dockerfile ├── Install.cmd └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vs-dockerfiles/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vs-dockerfiles/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vs-dockerfiles/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vs-dockerfiles/HEAD/SECURITY.md -------------------------------------------------------------------------------- /managed-native-desktop/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vs-dockerfiles/HEAD/managed-native-desktop/Dockerfile -------------------------------------------------------------------------------- /managed-native-desktop/Install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vs-dockerfiles/HEAD/managed-native-desktop/Install.cmd -------------------------------------------------------------------------------- /managed-native-desktop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vs-dockerfiles/HEAD/managed-native-desktop/README.md -------------------------------------------------------------------------------- /native-desktop/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vs-dockerfiles/HEAD/native-desktop/Dockerfile -------------------------------------------------------------------------------- /native-desktop/Install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vs-dockerfiles/HEAD/native-desktop/Install.cmd -------------------------------------------------------------------------------- /native-desktop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vs-dockerfiles/HEAD/native-desktop/README.md -------------------------------------------------------------------------------- /web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vs-dockerfiles/HEAD/web/Dockerfile -------------------------------------------------------------------------------- /web/Install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vs-dockerfiles/HEAD/web/Install.cmd -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vs-dockerfiles/HEAD/web/README.md --------------------------------------------------------------------------------