├── .gitignore ├── CODE_OF_CONDUCT.md ├── Demos └── Build2021 │ ├── Terminal_Setup.ps1 │ ├── Terminal_WinGet.json │ ├── WSL_Setup.ps1 │ ├── WSL_WinGet.json │ └── build-extension │ ├── background.png │ └── build-extension.json ├── LICENSE ├── README.md ├── SECURITY.md └── SUPPORT.md /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 5 | 6 | # User-specific files 7 | *.rsuser 8 | *.suo 9 | *.user 10 | *.userosscache 11 | *.sln.docstates 12 | 13 | # User-specific files (MonoDevelop/Xamarin Studio) 14 | *.userprefs 15 | 16 | # Mono auto generated files 17 | mono_crash.* 18 | 19 | # Build results 20 | [Dd]ebug/ 21 | [Dd]ebugPublic/ 22 | [Rr]elease/ 23 | [Rr]eleases/ 24 | x64/ 25 | x86/ 26 | [Aa][Rr][Mm]/ 27 | [Aa][Rr][Mm]64/ 28 | bld/ 29 | [Bb]in/ 30 | [Oo]bj/ 31 | [Ll]og/ 32 | [Ll]ogs/ 33 | 34 | # Visual Studio 2015/2017 cache/options directory 35 | .vs/ 36 | # Uncomment if you have tasks that create the project's static files in wwwroot 37 | #wwwroot/ 38 | 39 | # Visual Studio 2017 auto generated files 40 | Generated\ Files/ 41 | 42 | # MSTest test Results 43 | [Tt]est[Rr]esult*/ 44 | [Bb]uild[Ll]og.* 45 | 46 | # NUnit 47 | *.VisualState.xml 48 | TestResult.xml 49 | nunit-*.xml 50 | 51 | # Build Results of an ATL Project 52 | [Dd]ebugPS/ 53 | [Rr]eleasePS/ 54 | dlldata.c 55 | 56 | # Benchmark Results 57 | BenchmarkDotNet.Artifacts/ 58 | 59 | # .NET Core 60 | project.lock.json 61 | project.fragment.lock.json 62 | artifacts/ 63 | 64 | # StyleCop 65 | StyleCopReport.xml 66 | 67 | # Files built by Visual Studio 68 | *_i.c 69 | *_p.c 70 | *_h.h 71 | *.ilk 72 | *.meta 73 | *.obj 74 | *.iobj 75 | *.pch 76 | *.pdb 77 | *.ipdb 78 | *.pgc 79 | *.pgd 80 | *.rsp 81 | *.sbr 82 | *.tlb 83 | *.tli 84 | *.tlh 85 | *.tmp 86 | *.tmp_proj 87 | *_wpftmp.csproj 88 | *.log 89 | *.vspscc 90 | *.vssscc 91 | .builds 92 | *.pidb 93 | *.svclog 94 | *.scc 95 | 96 | # Chutzpah Test files 97 | _Chutzpah* 98 | 99 | # Visual C++ cache files 100 | ipch/ 101 | *.aps 102 | *.ncb 103 | *.opendb 104 | *.opensdf 105 | *.sdf 106 | *.cachefile 107 | *.VC.db 108 | *.VC.VC.opendb 109 | 110 | # Visual Studio profiler 111 | *.psess 112 | *.vsp 113 | *.vspx 114 | *.sap 115 | 116 | # Visual Studio Trace Files 117 | *.e2e 118 | 119 | # TFS 2012 Local Workspace 120 | $tf/ 121 | 122 | # Guidance Automation Toolkit 123 | *.gpState 124 | 125 | # ReSharper is a .NET coding add-in 126 | _ReSharper*/ 127 | *.[Rr]e[Ss]harper 128 | *.DotSettings.user 129 | 130 | # TeamCity is a build add-in 131 | _TeamCity* 132 | 133 | # DotCover is a Code Coverage Tool 134 | *.dotCover 135 | 136 | # AxoCover is a Code Coverage Tool 137 | .axoCover/* 138 | !.axoCover/settings.json 139 | 140 | # Visual Studio code coverage results 141 | *.coverage 142 | *.coveragexml 143 | 144 | # NCrunch 145 | _NCrunch_* 146 | .*crunch*.local.xml 147 | nCrunchTemp_* 148 | 149 | # MightyMoose 150 | *.mm.* 151 | AutoTest.Net/ 152 | 153 | # Web workbench (sass) 154 | .sass-cache/ 155 | 156 | # Installshield output folder 157 | [Ee]xpress/ 158 | 159 | # DocProject is a documentation generator add-in 160 | DocProject/buildhelp/ 161 | DocProject/Help/*.HxT 162 | DocProject/Help/*.HxC 163 | DocProject/Help/*.hhc 164 | DocProject/Help/*.hhk 165 | DocProject/Help/*.hhp 166 | DocProject/Help/Html2 167 | DocProject/Help/html 168 | 169 | # Click-Once directory 170 | publish/ 171 | 172 | # Publish Web Output 173 | *.[Pp]ublish.xml 174 | *.azurePubxml 175 | # Note: Comment the next line if you want to checkin your web deploy settings, 176 | # but database connection strings (with potential passwords) will be unencrypted 177 | *.pubxml 178 | *.publishproj 179 | 180 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 181 | # checkin your Azure Web App publish settings, but sensitive information contained 182 | # in these scripts will be unencrypted 183 | PublishScripts/ 184 | 185 | # NuGet Packages 186 | *.nupkg 187 | # NuGet Symbol Packages 188 | *.snupkg 189 | # The packages folder can be ignored because of Package Restore 190 | **/[Pp]ackages/* 191 | # except build/, which is used as an MSBuild target. 192 | !**/[Pp]ackages/build/ 193 | # Uncomment if necessary however generally it will be regenerated when needed 194 | #!**/[Pp]ackages/repositories.config 195 | # NuGet v3's project.json files produces more ignorable files 196 | *.nuget.props 197 | *.nuget.targets 198 | 199 | # Microsoft Azure Build Output 200 | csx/ 201 | *.build.csdef 202 | 203 | # Microsoft Azure Emulator 204 | ecf/ 205 | rcf/ 206 | 207 | # Windows Store app package directories and files 208 | AppPackages/ 209 | BundleArtifacts/ 210 | Package.StoreAssociation.xml 211 | _pkginfo.txt 212 | *.appx 213 | *.appxbundle 214 | *.appxupload 215 | 216 | # Visual Studio cache files 217 | # files ending in .cache can be ignored 218 | *.[Cc]ache 219 | # but keep track of directories ending in .cache 220 | !?*.[Cc]ache/ 221 | 222 | # Others 223 | ClientBin/ 224 | ~$* 225 | *~ 226 | *.dbmdl 227 | *.dbproj.schemaview 228 | *.jfm 229 | *.pfx 230 | *.publishsettings 231 | orleans.codegen.cs 232 | 233 | # Including strong name files can present a security risk 234 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 235 | #*.snk 236 | 237 | # Since there are multiple workflows, uncomment next line to ignore bower_components 238 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 239 | #bower_components/ 240 | 241 | # RIA/Silverlight projects 242 | Generated_Code/ 243 | 244 | # Backup & report files from converting an old project file 245 | # to a newer Visual Studio version. Backup files are not needed, 246 | # because we have git ;-) 247 | _UpgradeReport_Files/ 248 | Backup*/ 249 | UpgradeLog*.XML 250 | UpgradeLog*.htm 251 | ServiceFabricBackup/ 252 | *.rptproj.bak 253 | 254 | # SQL Server files 255 | *.mdf 256 | *.ldf 257 | *.ndf 258 | 259 | # Business Intelligence projects 260 | *.rdl.data 261 | *.bim.layout 262 | *.bim_*.settings 263 | *.rptproj.rsuser 264 | *- [Bb]ackup.rdl 265 | *- [Bb]ackup ([0-9]).rdl 266 | *- [Bb]ackup ([0-9][0-9]).rdl 267 | 268 | # Microsoft Fakes 269 | FakesAssemblies/ 270 | 271 | # GhostDoc plugin setting file 272 | *.GhostDoc.xml 273 | 274 | # Node.js Tools for Visual Studio 275 | .ntvs_analysis.dat 276 | node_modules/ 277 | 278 | # Visual Studio 6 build log 279 | *.plg 280 | 281 | # Visual Studio 6 workspace options file 282 | *.opt 283 | 284 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 285 | *.vbw 286 | 287 | # Visual Studio LightSwitch build output 288 | **/*.HTMLClient/GeneratedArtifacts 289 | **/*.DesktopClient/GeneratedArtifacts 290 | **/*.DesktopClient/ModelManifest.xml 291 | **/*.Server/GeneratedArtifacts 292 | **/*.Server/ModelManifest.xml 293 | _Pvt_Extensions 294 | 295 | # Paket dependency manager 296 | .paket/paket.exe 297 | paket-files/ 298 | 299 | # FAKE - F# Make 300 | .fake/ 301 | 302 | # CodeRush personal settings 303 | .cr/personal 304 | 305 | # Python Tools for Visual Studio (PTVS) 306 | __pycache__/ 307 | *.pyc 308 | 309 | # Cake - Uncomment if you are using it 310 | # tools/** 311 | # !tools/packages.config 312 | 313 | # Tabs Studio 314 | *.tss 315 | 316 | # Telerik's JustMock configuration file 317 | *.jmconfig 318 | 319 | # BizTalk build output 320 | *.btp.cs 321 | *.btm.cs 322 | *.odx.cs 323 | *.xsd.cs 324 | 325 | # OpenCover UI analysis results 326 | OpenCover/ 327 | 328 | # Azure Stream Analytics local run output 329 | ASALocalRun/ 330 | 331 | # MSBuild Binary and Structured Log 332 | *.binlog 333 | 334 | # NVidia Nsight GPU debugger configuration file 335 | *.nvuser 336 | 337 | # MFractors (Xamarin productivity tool) working folder 338 | .mfractor/ 339 | 340 | # Local History for Visual Studio 341 | .localhistory/ 342 | 343 | # BeatPulse healthcheck temp database 344 | healthchecksdb 345 | 346 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 347 | MigrationBackup/ 348 | 349 | # Ionide (cross platform F# VS Code tools) working folder 350 | .ionide/ 351 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Microsoft Open Source Code of Conduct 2 | 3 | This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). 4 | 5 | Resources: 6 | 7 | - [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/) 8 | - [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) 9 | - Contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with questions or concerns 10 | -------------------------------------------------------------------------------- /Demos/Build2021/Terminal_Setup.ps1: -------------------------------------------------------------------------------- 1 | # Things to note 2 | # Script needs internet access to download files 3 | # Script assumes WinGet is installed 4 | # Script will remotely grab the json fragments and import for winget 5 | # Script assumes winget's setting has this line in it: experimentalFeatures": { "import": true }, 6 | 7 | $mypath = $MyInvocation.MyCommand.Path 8 | $isAdmin = ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator) 9 | 10 | # Restarting as Admin 11 | if (!$isAdmin) { 12 | Start-Process PowerShell -Verb RunAs "-NoProfile -ExecutionPolicy Bypass -Command `"cd '$pwd'; & '$mypath' $Args;`""; 13 | exit; 14 | } 15 | 16 | # Copy JSON fragments to Terminal folder 17 | $termFragPath = $env:LOCALAPPDATA + "\Microsoft\Windows Terminal\Fragments\build-extension" 18 | mkdir $termFragPath 19 | move-item -Path .\build-extension -Destination $termFragPath 20 | 21 | # installing what I like 😊 22 | winget import Terminal_WinGet.json 23 | 24 | # since env won't reset right now, directly adding git to path 25 | $env:Path += ";" + $Env:Programfiles + "\git\cmd" 26 | 27 | # Getting terminal source code cloned 28 | mkdir $env:USERPROFILE/source/repo 29 | cd $env:USERPROFILE/source/repo 30 | 31 | git clone https://github.com/microsoft/terminal 32 | 33 | # done 34 | $Input = Read-Host -Prompt "Done! Press enter to quit" -------------------------------------------------------------------------------- /Demos/Build2021/Terminal_WinGet.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema" : "https://aka.ms/winget-packages.schema.1.0.json", 3 | "CreationDate" : "2021-04-13T11:00:20.925-00:00", 4 | "Sources" : 5 | [ 6 | /* Commenting out since we want scriptable. This requires Store to be signed in 7 | { 8 | "Packages" : 9 | [ 10 | { "Id" : "Microsoft.WindowsTerminalPreview" } 11 | ], 12 | "SourceDetails" : 13 | { 14 | "Argument" : "https://winget.azureedge.net/msstore", 15 | "Identifier" : "Microsoft.Winget.MSStore.Source_8wekyb3d8bbwe", 16 | "Name" : "msstore", 17 | "Type" : "Microsoft.PreIndexed.Package" 18 | } 19 | }, 20 | */ 21 | { 22 | "Packages" : 23 | [ 24 | { "Id" : "Microsoft.WindowsTerminalPreview" }, 25 | { "Id" : "Git.Git" }, 26 | { "Id" : "Figma.Figma" }, 27 | { "Id" : "Microsoft.PowerToys" }, 28 | { "Id" : "Microsoft.VisualStudioCode" }, 29 | { "Id" : "Microsoft.VisualStudio.Enterprise" } 30 | ], 31 | "SourceDetails" : 32 | { 33 | "Argument" : "https://winget.azureedge.net/cache", 34 | "Identifier" : "Microsoft.Winget.Source_8wekyb3d8bbwe", 35 | "Name" : "winget", 36 | "Type" : "Microsoft.PreIndexed.Package" 37 | } 38 | } 39 | ], 40 | "WinGetVersion" : "0.2.10971" 41 | } 42 | -------------------------------------------------------------------------------- /Demos/Build2021/WSL_Setup.ps1: -------------------------------------------------------------------------------- 1 | # Things to note 2 | # Single script, will survive reboot 3 | # Script needs to be run under admin (will auto correct if not) 4 | # Script needs internet access to download files 5 | # Script assumes WinGet is installed 6 | # 7 | # Why aren't we using wsl --install -d Ubuntu 8 | # Well, we want to WSL.exe install a bunch of stuff 9 | # Ubuntu2004 install --root can't be done above so it requires user interaction 10 | # if you don't need to install items on linux without setting root, this script becomes much simplier 11 | # as we don't need to recreate wsl --install 12 | 13 | $mypath = $MyInvocation.MyCommand.Path 14 | Write-Output "Path of the script : $mypath" 15 | Write-Output "IsReboot: $Args" 16 | $isReboot = $Args[0] 17 | $isAdmin = ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator) 18 | 19 | # Restarting as Admin 20 | if (!$isAdmin) { 21 | Start-Process PowerShell -Verb RunAs "-NoProfile -ExecutionPolicy Bypass -Command `"cd '$pwd'; & '$mypath' $Args;`""; 22 | exit; 23 | } 24 | 25 | if(!$isReboot) 26 | { 27 | Write-Output "First time run" 28 | 29 | # Enabling hyper-v 30 | Write-Output "Enabling Hyper-V" 31 | dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart 32 | 33 | # Enabling WSL 34 | Write-Output "Enabling WSL" 35 | dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart 36 | } 37 | else 38 | { 39 | # Copy JSON fragments to Terminal folder 40 | $termFragPath = $env:LOCALAPPDATA + "\Microsoft\Windows Terminal\Fragments\build-extension" 41 | mkdir $termFragPath 42 | 43 | move-item -Path .\build-extension -Destination $termFragPath 44 | 45 | # Rebooted 46 | Write-Output "Rebooted" 47 | 48 | # Updating kernel 49 | Write-Output "Updating kernel" 50 | Invoke-WebRequest -Uri https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi -OutFile ~/wsl_update_x64.msi -UseBasicParsing 51 | Start-Process ~\wsl_update_x64.msi -ArgumentList '/quiet' -Wait 52 | 53 | # WSL2 as default 54 | Write-Output "WSL2 as default" 55 | wsl.exe --set-default-version 2 56 | 57 | # Installing distro 58 | Write-Output "Installing Ubuntu" 59 | Invoke-WebRequest -Uri https://aka.ms/wslubuntu2004 -OutFile ~/Ubuntu.appx -UseBasicParsing 60 | Add-AppxPackage -Path ~/Ubuntu.appx 61 | 62 | # run the distro once and have it install locally with root user, unset password 63 | Ubuntu2004 install --root 64 | 65 | # Installing apps Craig needs for demo 66 | # Install Linux GUI apps 67 | wsl.exe -u root apt update 68 | wsl.exe -u root apt install nautilus vim-gtk gedit -y 69 | 70 | # Install NodeJS 71 | wsl.exe -u root curl -fsSL https://deb.nodesource.com/setup_15.x `| -E bash - 72 | wsl.exe -u root apt-get install -y nodejs 73 | 74 | # Install TestCafe 75 | # TODO CRAIG: flip to https://playwright.dev/ 76 | wsl.exe -u root npm install -g testcafe 77 | 78 | # Install Microsoft Edge 79 | wsl.exe -u root apt update 80 | wsl.exe -u root apt install software-properties-common apt-transport-https wget 81 | wsl.exe -u root wget -q https://packages.microsoft.com/keys/microsoft.asc -O- `| apt-key add - 82 | wsl.exe -u root add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" 83 | wsl.exe -u root apt install microsoft-edge-dev -y 84 | 85 | # Installing stuff on Windows 86 | Write-Output "Winget install stuff" 87 | winget import WSL_WinGet.json 88 | } 89 | 90 | if(!$isReboot) 91 | { 92 | # RESTART COMPUTER 93 | $RunOnceKey = "HKLM:\Software\Microsoft\Windows\CurrentVersion\RunOnce" 94 | set-itemproperty $RunOnceKey "NextRun" ('C:\Windows\System32\WindowsPowerShell\v1.0\Powershell.exe -executionPolicy Unrestricted -File ' + $mypath + ' -reboot') 95 | 96 | Write-Output "Need to restart" 97 | $Input = Read-Host -Prompt "Press to restart" 98 | Restart-Computer 99 | } -------------------------------------------------------------------------------- /Demos/Build2021/WSL_WinGet.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema" : "https://aka.ms/winget-packages.schema.1.0.json", 3 | "CreationDate" : "2021-04-13T11:00:20.925-00:00", 4 | "Sources" : 5 | [ 6 | /* Commenting out since we want scriptable. This requires Store to be signed in 7 | { 8 | "Packages" : 9 | [ 10 | { "Id" : "Microsoft.WindowsTerminalPreview" } 11 | ], 12 | "SourceDetails" : 13 | { 14 | "Argument" : "https://winget.azureedge.net/msstore", 15 | "Identifier" : "Microsoft.Winget.MSStore.Source_8wekyb3d8bbwe", 16 | "Name" : "msstore", 17 | "Type" : "Microsoft.PreIndexed.Package" 18 | } 19 | }, 20 | */ 21 | { 22 | "Packages" : 23 | [ 24 | { "Id" : "Microsoft.WindowsTerminalPreview" }, 25 | { "Id" : "Microsoft.PowerToys" }, 26 | { "Id" : "Microsoft.VisualStudioCode" }, 27 | ], 28 | "SourceDetails" : 29 | { 30 | "Argument" : "https://winget.azureedge.net/cache", 31 | "Identifier" : "Microsoft.Winget.Source_8wekyb3d8bbwe", 32 | "Name" : "winget", 33 | "Type" : "Microsoft.PreIndexed.Package" 34 | } 35 | } 36 | ], 37 | "WinGetVersion" : "0.2.10971" 38 | } 39 | -------------------------------------------------------------------------------- /Demos/Build2021/build-extension/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsForDevelopers/a5176562afce96734e53762b41d1e77a76616330/Demos/Build2021/build-extension/background.png -------------------------------------------------------------------------------- /Demos/Build2021/build-extension/build-extension.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": [ 3 | { 4 | // updates Windows PowerShell profile 5 | "updates": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", 6 | "fontSize": 16, 7 | "backgroundImage": "%localappdata%/Microsoft/Windows Terminal/Fragments/build-extension/background.png" 8 | }, 9 | { 10 | // creates a new profile 11 | "name": "Build Profile", 12 | "commandline": "powershell.exe" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) Microsoft Corporation. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Windows for Developers 2 | 3 | Welcome everyone to where we house a bunch of useful links and the scripts we used for our demos. We love being transparent and happy to share how we pulled off some demos. 4 | 5 | ## Microsoft Build 2021: BRK210 What's new in Windows 10 for ALL developers 6 | 7 | ### Session link 8 | 9 | [BRK210 - What's new in Windows 10 for ALL developers](https://aka.ms/brk210) 10 | ### Great open source links 11 | 12 | - https://github.com/microsoft/terminal 13 | - https://github.com/microsoft/powertoys 14 | - https://github.com/microsoft/wslg 15 | - https://github.com/microsoft/winget-cli 16 | - https://playwright.dev/ 17 | 18 | ### Performance on Windows feedback 19 | 20 | - https://github.com/microsoft/Windows-Dev-Performance 21 | 22 | ### Power Automate Desktop feedback 23 | 24 | - https://aka.ms/PADfeedback 25 | 26 | ### Other stuff 27 | 28 | #### Contributing 29 | 30 | This project welcomes contributions and suggestions. Most contributions require you to agree to a 31 | Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us 32 | the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com. 33 | 34 | When you submit a pull request, a CLA bot will automatically determine whether you need to provide 35 | a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions 36 | provided by the bot. You will only need to do this once across all repos using our CLA. 37 | 38 | This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). 39 | For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or 40 | contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. 41 | 42 | #### Trademarks 43 | 44 | This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft 45 | trademarks or logos is subject to and must follow 46 | [Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general). 47 | Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. 48 | Any use of third-party trademarks or logos are subject to those third-party's policies. 49 | -------------------------------------------------------------------------------- /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), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/). 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://docs.microsoft.com/en-us/previous-versions/tn-archive/cc751383(v=technet.10)), 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://msrc.microsoft.com/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://www.microsoft.com/en-us/msrc/pgp-key-msrc). 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://microsoft.com/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://www.microsoft.com/en-us/msrc/cvd). 40 | 41 | -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- 1 | # TODO: The maintainer of this repo has not yet edited this file 2 | 3 | **REPO OWNER**: Do you want Customer Service & Support (CSS) support for this product/project? 4 | 5 | - **No CSS support:** Fill out this template with information about how to file issues and get help. 6 | - **Yes CSS support:** Fill out an intake form at [aka.ms/spot](https://aka.ms/spot). CSS will work with/help you to determine next steps. More details also available at [aka.ms/onboardsupport](https://aka.ms/onboardsupport). 7 | - **Not sure?** Fill out a SPOT intake as though the answer were "Yes". CSS will help you decide. 8 | 9 | *Then remove this first heading from this SUPPORT.MD file before publishing your repo.* 10 | 11 | # Support 12 | 13 | ## How to file issues and get help 14 | 15 | This project uses GitHub Issues to track bugs and feature requests. Please search the existing 16 | issues before filing new issues to avoid duplicates. For new issues, file your bug or 17 | feature request as a new Issue. 18 | 19 | For help and questions about using this project, please **REPO MAINTAINER: INSERT INSTRUCTIONS HERE 20 | FOR HOW TO ENGAGE REPO OWNERS OR COMMUNITY FOR HELP. COULD BE A STACK OVERFLOW TAG OR OTHER 21 | CHANNEL. WHERE WILL YOU HELP PEOPLE?**. 22 | 23 | ## Microsoft Support Policy 24 | 25 | Support for this **PROJECT or PRODUCT** is limited to the resources listed above. 26 | --------------------------------------------------------------------------------