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
Usefull Extensions | |
Power Commands for Visual Studio | |
Link - https://marketplace.visualstudio.com/items?itemName=VisualStudioProductTeam. | |
Productivity Power Tools 2017 | |
Link - https://marketplace.visualstudio.com/items?itemName=VisualStudioProductTeam.ProductivityPowerPack2017 | |
Web Essentials 2017 | |
Link - https://marketplace.visualstudio.com/items?itemName=MadsKristensen.WebExtensionPack2017 | |
Usefull Tool | |
http://cmder.net/ |
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
# Azure Links for Download | |
#### Azure SDK for Visual Studio (.Net) | |
- https://azure.microsoft.com/en-us/downloads/ | |
#### Azure CLI powershell and AzureCli | |
- For Powershell Core (This will support Both AZ and AZRM) | |
- https://github.com/PowerShell/PowerShell |
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
# Azure Links | |
#### Azure Regions | |
- https://azure.microsoft.com/en-in/regions | |
#### Available Services | |
- https://azure.microsoft.com/en-in/services/ |
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
FROM mcr.microsoft.com/dotnet/core/sdk:2.2-alpine AS build | |
WORKDIR /app | |
COPY *.csproj ./ | |
RUN dotnet restore | |
COPY . . | |
# RUN dotnet --version |
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
{ | |
"telemetry.enableCrashReporter": false, | |
"window.zoomLevel": 0, | |
"window.restoreWindows": "none", | |
"window.title": "${rootPath}${separator}${dirty}${activeEditorShort}${separator}${appName}", | |
"editor.tabSize": 2, | |
"editor.fontSize": 18, | |
"editor.lineHeight": 20, | |
"editor.letterSpacing": 0.5, | |
"editor.cursorWidth": 3, |
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
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<TargetFramework>netstandard2.0</TargetFramework> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.0-beta0006" /> | |
</ItemGroup> | |
</Project> | |
---------------------- |
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
function keysToLowerCase(obj) { | |
if(obj instanceof Array) { | |
for (var i in obj) { | |
obj[i] = keysToLowerCase(obj[i]); | |
} | |
} | |
if (!typeof(obj) === "object" || typeof(obj) === "string" || typeof(obj) === "number" || typeof(obj) === "boolean") { | |
return obj; | |
} | |
var keys = Object.keys(obj); |