Showing results for Azure - .NET Blog

Jul 16, 2018
Post comments count0
Post likes count0

Exploring Azure App Service – Azure Diagnostics

Angelos Petropoulos
Angelos Petropoulos

Use Application Insights to diagnose performance and errors in your web apps. Azure App Service is a great place to get started hosting and maintaining your web apps. You don’t have to enable App Insights upfront; the option is always there to be turned on when and as needed without re-deployment.

ASP.NETASP.NET CoreAzure
May 22, 2018
Post comments count0
Post likes count0

Announcing ASP.NET Providers Connected Service Visual Studio Extension

Matt FJH
Matt FJH

Provider pattern was introduced in ASP.NET 2.0 and it gives the developers the flexibility of where to store the state of ASP.NET features (e.g. Session State, Membership, Output Cache etc.). In ASP.NET 4.6.2, we added async support for Session State Provider and Output Cache Provider.  These providers provide much better scalability, and enables t...

ASP.NETVisual StudioAzure
May 21, 2018
Post comments count0
Post likes count0

A Penny Saved is a Ton of Serverless Compute Earned

Web Development Tools Microsoft
Web Development Tools Microsoft

Scott Guthrie recently shared one of my favorite anecdotes on his Azure Red Shirt Tour. A Microsoft customer regularly invokes 1 billion (yes, that’s with a “B”) Azure Functions per day. The customer reached out to support after the first month thinking there was a bug in the billing system, only to find out that the $72 was in fact correct. How is...

ASP.NETAzure
Apr 27, 2018
Post comments count0
Post likes count0

Cosmos DB Solves Common Data Challenges in App Development

Jasmine Greenaway [MSFT]
Jasmine Greenaway [MSFT]

When considering how to implement your application with a relational database, it can change how you build it dramatically. Some of these challenges include adding an abstract implementation of the schema in the code, mapping data to objects, building queries, and preventing SQL injection attacks. Wouldn't it be great if there was a way to reduce t...

ASP.NETASP.NET CoreAzure
Feb 27, 2018
Post comments count0
Post likes count0

ASP.NET Core 2.1.0-preview1: Using ASP.NET Core Previews on Azure App Service

Glenn Condron [MSFT]
Glenn Condron [MSFT]

There are 3 options to get ASP.NET Core 2.1 Preview applications running on Azure App Service: 1. Installing the Preview1 site extension 2. Deploying your app self-contained 3. Using Web Apps for Containers Installing the site extension Starting with 2.1-preview1 we are producing an Azure App Service site extension that contains everything yo...

ASP.NETASP.NET CoreAzure
Feb 8, 2018
Post comments count0
Post likes count0

Two Lesser Known Tools for Local Azure Development

Justin Clareburt (MSFT)
Justin Clareburt (MSFT)

If you’re developing applications that target Azure services (e.g. Web Apps, Functions, Storage), you’ll want to know about two powerful tools that come with Visual Studio 2017 and the Azure development workload: * Cloud Explorer is a tool window inside Visual Studio that lets you browse your Azure resources and perform specific tasks – like stop a...

ASP.NETAzure
Feb 7, 2018
Post comments count0
Post likes count0

Diagnosing Errors on your Cloud Apps

Justin Clareburt (MSFT)
Justin Clareburt (MSFT)

One of the most frustrating experiences is when you have your app working on your local machine, but when you publish it it’s inexplicably failing. Fortunately, Visual Studio provides handy features for working with apps running in Azure. In this blog I’ll show you how to leverage the capabilities of Cloud Explorer to diagnose issues in Azure. If y...

ASP.NETAzureCloud
Jan 9, 2018
Post comments count0
Post likes count0

64 bit ASP.NET Core on Azure App Service

Glenn Condron [MSFT]
Glenn Condron [MSFT]

When creating an Azure App Service .NET Core is already pre-installed. However, only the 32 bit .NET runtime is installed. In this post we will look at a  few ways that you can get a 64 bit runtime on Azure App Service During the 2.1 timeframe we are hoping to have both 32 and 64 bit runtimes installed as well as enabling the portal experience to ...

ASP.NETASP.NET CoreAzure
Dec 21, 2017
Post comments count0
Post likes count0

Take a Break with Azure Functions

Justin Clareburt (MSFT)
Justin Clareburt (MSFT)

So, it's the Holidays. The office is empty, the boss is away, and you've got a bit of free time on your hands. How about learning a new skill and having some fun? Azure Functions are a serverless technology that executes code based on various triggers (i.e. a URL is called, an item is placed on a queue, a file is added to blob storage, a timer goe...

ASP.NETAzure
Nov 28, 2017
Post comments count0
Post likes count0

Improve website performance by optimizing images

Mads Kristensen
Mads Kristensen

We all want our web applications to load as fast as possible to give the best possible experience to the users. One of the steps to achieve that is to make sure the images we use are as optimized as possible. If we can reduce the file size of the images then we can significantly reduce the weight of the website. This is important for various reaso...

ASP.NETASP.NET CoreAzure