├── .gitignore ├── CONTRIBUTING.md ├── Common └── Utilities.cs ├── LICENSE ├── ManageWebAppWithTrafficManager.csproj ├── Program.cs └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-dotnet-scale-web-apps/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-dotnet-scale-web-apps/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Common/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-dotnet-scale-web-apps/HEAD/Common/Utilities.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-dotnet-scale-web-apps/HEAD/LICENSE -------------------------------------------------------------------------------- /ManageWebAppWithTrafficManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-dotnet-scale-web-apps/HEAD/ManageWebAppWithTrafficManager.csproj -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-dotnet-scale-web-apps/HEAD/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-dotnet-scale-web-apps/HEAD/README.md --------------------------------------------------------------------------------