- https://marketplace.visualstudio.com/items?itemName=bierner.color-info
- https://marketplace.visualstudio.com/items?itemName=bierner.markdown-preview-github-styles
- https://marketplace.visualstudio.com/items?itemName=cake-build.cake-vscode
- https://marketplace.visualstudio.com/items?itemName=christian-kohler.npm-intellisense
- https://marketplace.visualstudio.com/items?itemName=christian-kohler.path-intellisense
- https://marketplace.visualstudio.com/items?itemName=DavidAnson.vscode-markdownlint
- https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint
- https://marketplace.visualstudio.com/items?itemName=DmitryDorofeev.empty-indent
- https://marketplace.visualstudio.com/items?itemName=donjayamanne.githistory
- https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens
π
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace MyAwesomeProgram | |
| { | |
| using System.Threading.Tasks; | |
| using Microsoft.Azure.WebJobs; | |
| using Microsoft.Extensions.Logging; | |
| [Disable("MYWEBJOB_DISABLED")] | |
| public class Functions | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols] | |
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0] | |
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0\Server] | |
| "Enabled"=dword:00000000 | |
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 3.0] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [core] | |
| # this actually opens in Notepad2 | |
| editor = notepad.exe | |
| [alias] | |
| up = !git pull --rebase --prune $@ && git submodule update --init --recursive | |
| bclean = "!f() { git branch --merged ${1-master} | grep -v " ${1-master}$" | xargs git branch -d; }; f" | |
| bdone = "!f() { git checkout ${1-master} && git up && git bclean ${1-master}; }; f" | |
| shove = push origin --force | |
| tug = pull upstream master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Sample usage .\CreateReleaseAnnotation.ps1 -applicationId "<appId>" -apiKey "<apiKey>" -releaseName "<releaseName>" -releaseProperties @{"ReleaseDescription"="Release with annotation";"TriggerBy"="John Doe"} -eventDateTime "2016-07-07T06:23:44" | |
| param( | |
| [parameter(Mandatory = $true)][string]$applicationId, | |
| [parameter(Mandatory = $true)][string]$apiKey, | |
| [parameter(Mandatory = $true)][string]$releaseName, | |
| [parameter(Mandatory = $false)]$releaseProperties, | |
| [parameter(Mandatory = $false)][DateTime]$eventDateTime | |
| ) | |
| # background info on how fwlink works: After you submit a web request, many sites redirect through a series of intermediate pages before you finally land on the destination page. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "1.0", | |
| "components": [ | |
| "Microsoft.VisualStudio.Component.CoreEditor", | |
| "Microsoft.VisualStudio.Workload.CoreEditor", | |
| "Microsoft.VisualStudio.Component.Roslyn.Compiler", | |
| "Microsoft.Component.MSBuild", | |
| "Microsoft.VisualStudio.Component.Static.Analysis.Tools", | |
| "Microsoft.VisualStudio.Component.Roslyn.LanguageServices", | |
| "Microsoft.VisualStudio.Component.PortableLibrary", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace Website.TagHelpers | |
| { | |
| using System.Security.Claims; | |
| using System.Text; | |
| using System.Text.Encodings.Web; | |
| using Microsoft.AspNetCore.Mvc.Rendering; | |
| using Microsoft.AspNetCore.Mvc.ViewFeatures; | |
| using Microsoft.AspNetCore.Razor.TagHelpers; | |
| using Microsoft.Extensions.Options; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "1.0", | |
| "components": [ | |
| "Microsoft.VisualStudio.Workload.ManagedDesktop", | |
| "Microsoft.VisualStudio.Workload.NativeDesktop", | |
| "Microsoft.VisualStudio.Workload.NetWeb", | |
| "Microsoft.VisualStudio.Workload.Azure", | |
| "Microsoft.VisualStudio.Workload.VisualStudioExtension", | |
| "microsoft.net.componentgroup.targetingpacks.common", | |
| "microsoft.componentgroup.blend", |