Showing results for Visual Studio - Developer Support

May 31, 2020
Post comments count0
Post likes count0

Managing Cloud Ready .NET App Secrets in Visual Studio

Developer Support
Developer Support

Secrets need to be handled with care and this is the responsibility of every developer. We’ve all read those news reports of someone accidently checking a production password into source control only to find out the next day that their credit card has been maxed out.

TeamAzure.NET
Sep 23, 2019
Post comments count0
Post likes count0

.NET Conf 2019

Developer Support
Developer Support

.NET Conf 2019, a free, 3-day, virtual developer event

Team.NETVisual Studio
Jun 11, 2019
Post comments count0
Post likes count0

[Service Fabric] Why won’t Visual Studio connect to my cluster?

Developer Support
Developer Support

In this blog post, I’ll discuss something that has frustrated both myself and many others for quite a while, and that is, failure of Visual Studio to connect to an Azure Service Fabric cluster. We’ll be using Visual Studio 2017 as an example.

TeamVisual StudioService Fabric
Jun 7, 2019
Post comments count0
Post likes count0

Developing a Dockerized Asp.Net Core Application Using Visual Studio Code

Developer Support
Developer Support

Visual Studio Code offers feature parity with Visual Studio 2017/2019 when it comes to developing a containerized Asp.Net Core application. Since VSCode is cross platform, you can develop your next container DotNetCore application on a Linux or Mac while having access to all the great features that Windows users enjoy on VS2017/2019.

Visual StudioDockerContainers
Mar 6, 2019
Post comments count0
Post likes count0

Remediation of old versions of Visual Studio Isolated Shell

Developer Support
Developer Support

With this little tidbit of information, we were able to write a powershell script that iterates through a given folder recursively and identifies executables that are dependent on VS Isolated Shell.

TeamVisual StudioLifecycle
Jan 25, 2019
Post comments count0
Post likes count0

Paired Programming & Visual Studio Live Share

Developer Support
Developer Support

My first experience matched many of experiences I remember mentioned in the books I read. At first, paired programming was extremely intimidating. I had to pair with an extremely seasoned developer thinking that I was about to be proved that I was not as smart as I thought I was – see Imposter Syndrome. Well, I learned many lessons from this develo...

TeamVisual StudioBrian Blackman
May 23, 2018
Post comments count0
Post likes count0

Visualize Code with Visual Studio

Developer Support
Developer Support

In this post, App Dev Manager Ed Tovsen spotlight the features and benefits of Code Maps in Visual Studio.Systems architects have long used modeling to design the structure, behavior, and interaction of systems within an organization. Modeling helps to ensure that requirements are clearly defined between users and IT. Models are created with varyin...

TeamVisual StudioCode Maps
Apr 26, 2018
Post comments count3
Post likes count0

Setting up .NET Core Configuration Providers

Developer Support
Developer Support

ASP Core uses the convenient Provider Pattern to load configuration key/value pairs from various sources and expose those to you as a single Configuration object. This allows you to grab a configuration key like ConnectionString with one line of code regardless of where it was sourced from. However, the configuration API is not available by default...

Visual Studio.NET Coreasp.net core
Apr 17, 2018
Post comments count3
Post likes count1

Real-time Code Quality with SonarLint in Visual Studio

Developer Support
Developer Support

In the second part of her SonarQube series, Premier Developer Consultant Sana Noorani builds on top of SonarQube technology and explains how SonarLint can be added in Visual Studio to track real time code quality. What is SonarLint? SonarLint an extension you can add to an IDE such as Visual Studio that can provide developers real-time feedback on...

Visual StudioOpen SourceSana Noorani
Mar 27, 2018
Post comments count0
Post likes count0

Unit Testing Your JavaScript Code

Developer Support
Developer Support

In a recent post from his blog, Premier Developer Consultant Jim Blizzard discusses how to set up Visual Studio 2017 to run JavaScript-based unit tests.This week, I demonstrated to a client how they could write unit tests in JavaScript to test their JavaScript code by leveraging Karma, Jasmine, and Chutzpah. The unit tests show up in Test Explorer ...

Visual StudioTestingJavaScript