├── SECURITY.md └── README.md /SECURITY.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Security 4 | 5 | Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/Microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet) and [Xamarin](https://github.com/xamarin). 6 | 7 | If you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://aka.ms/security.md/definition), please report it to us as described below. 8 | 9 | ## Reporting Security Issues 10 | 11 | **Please do not report security vulnerabilities through public GitHub issues.** 12 | 13 | Instead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://aka.ms/security.md/msrc/create-report). 14 | 15 | If you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://aka.ms/security.md/msrc/pgp). 16 | 17 | You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://www.microsoft.com/msrc). 18 | 19 | Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue: 20 | 21 | * Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.) 22 | * Full paths of source file(s) related to the manifestation of the issue 23 | * The location of the affected source code (tag/branch/commit or direct URL) 24 | * Any special configuration required to reproduce the issue 25 | * Step-by-step instructions to reproduce the issue 26 | * Proof-of-concept or exploit code (if possible) 27 | * Impact of the issue, including how an attacker might exploit the issue 28 | 29 | This information will help us triage your report more quickly. 30 | 31 | If you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://aka.ms/security.md/msrc/bounty) page for more details about our active programs. 32 | 33 | ## Preferred Languages 34 | 35 | We prefer all communications to be in English. 36 | 37 | ## Policy 38 | 39 | Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://aka.ms/security.md/cvd). 40 | 41 | 42 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Simplygon - API examples 2 | 3 | This project include source code for the Simplygon API examples. 4 | To be able to use these examples you need to have Simplygon installed. 5 | You can [download Simplygon here](https://simplygon.com/downloads). 6 | You can find more info in the [Simplygon documentation](https://documentation.simplygon.com/). 7 | 8 | ## Find correct version to checkout 9 | Each minor Simplygon version has it's own branch release/*version* where you find the source code. Make sure to checkout correct branch before proceeding to build the integrations. 10 | 11 | ## C++ examples 12 | ### Step 1 - Build 13 | Open the Visual Studio solution file (Src/Cpp/CppExamples.sln) using Visual Studio 2019 or later. 14 | ### Step 2 - Run 15 | Select any of the project in the solution as the start-up project and build/run the project to get started. 16 | 17 | ## C# examples 18 | ### Step 1 - Build 19 | Open the Visual Studio solution file (Src/Cs/CsExamples.sln) using Visual Studio 2019 or later. 20 | ### Step 2 - Run 21 | Select any of the project in the solution as the start-up project and build/run the project to get started. 22 | 23 | ## Python examples 24 | ### Step 1 - Run 25 | Run any of the Python scripts available in the Python folder (Src/Python). 26 | 27 | ## Support 28 | 29 | Please use the Simplygon zendesk portal when you want to submit a support request. 30 | [Submit support request](https://simplygon.zendesk.com/hc/en-us/requests/new) 31 | 32 | ## Data Collection 33 | 34 | The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may [turn off the telemetry as described in the repository](telemetry.md). There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices. 35 | 36 | ## Trademarks 37 | 38 | This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow [Microsoft’s Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general). Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party’s policies. --------------------------------------------------------------------------------