├── .gitignore ├── AddingCodeRunCsx.PNG ├── CreateFunctionApp.PNG ├── CreateNewFunction.PNG ├── FinalFunction.PNG ├── HttpTriggerWithAuthz.PNG ├── LICENSE ├── README.md └── code ├── FunctionConfig.json ├── Project.json └── run.csx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/functions-dotnet-migrating-console-apps/HEAD/.gitignore -------------------------------------------------------------------------------- /AddingCodeRunCsx.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/functions-dotnet-migrating-console-apps/HEAD/AddingCodeRunCsx.PNG -------------------------------------------------------------------------------- /CreateFunctionApp.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/functions-dotnet-migrating-console-apps/HEAD/CreateFunctionApp.PNG -------------------------------------------------------------------------------- /CreateNewFunction.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/functions-dotnet-migrating-console-apps/HEAD/CreateNewFunction.PNG -------------------------------------------------------------------------------- /FinalFunction.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/functions-dotnet-migrating-console-apps/HEAD/FinalFunction.PNG -------------------------------------------------------------------------------- /HttpTriggerWithAuthz.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/functions-dotnet-migrating-console-apps/HEAD/HttpTriggerWithAuthz.PNG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/functions-dotnet-migrating-console-apps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/functions-dotnet-migrating-console-apps/HEAD/README.md -------------------------------------------------------------------------------- /code/FunctionConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/functions-dotnet-migrating-console-apps/HEAD/code/FunctionConfig.json -------------------------------------------------------------------------------- /code/Project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/functions-dotnet-migrating-console-apps/HEAD/code/Project.json -------------------------------------------------------------------------------- /code/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/functions-dotnet-migrating-console-apps/HEAD/code/run.csx --------------------------------------------------------------------------------