{"id":5742,"date":"2014-11-12T00:00:00","date_gmt":"2014-11-12T00:00:00","guid":{"rendered":"https:\/\/azure.microsoft.com\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview"},"modified":"2025-09-16T08:36:52","modified_gmt":"2025-09-16T15:36:52","slug":"announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview","status":"publish","type":"post","link":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/","title":{"rendered":"Announcing Azure SDK 2.5 for .NET and Visual Studio 2015 Preview"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Today, we are excited to announce Azure SDK 2.5 for Visual Studio 2012, 2013 and 2015 Preview.&nbsp; We are also excited to announce Visual Studio 2015 Preview which adds even more Azure features.&nbsp; This post describes the features in these releases and the scenarios they enable.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Azure SDK 2.5 for .NET [download for <a href=\"https:\/\/www.microsoft.com\/web\/handlers\/webpi.ashx\/getinstaller\/VWDOrVs2013AzurePack.appids\">VS 2013<\/a> | <a href=\"https:\/\/www.microsoft.com\/web\/handlers\/webpi.ashx\/getinstaller\/VWDOrVs11AzurePack.appids\">VS 2012<\/a> | <a href=\"https:\/\/www.microsoft.com\/web\/handlers\/webpi.ashx\/getinstaller\/VWDOrVs2015AzurePack.appids\">VS 2015 Preview<\/a>]<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\"><strong>Diagnostics improvements for Cloud Services and Virtual Machines<\/strong>: Diagnostics features now use the Azure extension model so you can turn on diagnostics or update the configuration without redeploy.\u00a0 New features include ETW for structured logging, crash dumps and Virtual Machines support for the first time.<\/li>\n\n\n\n<li class=\"wp-block-list-item\"><strong>Azure Resource Manager Tools<\/strong>: Create an application made up of multiple Azure resources using Azure Gallery templates.\u00a0 The experience is available with a new Cloud Deployment Project type that enables creating complex environments in a declarative and repeatable way by using JSON templates and parameter files.<\/li>\n\n\n\n<li class=\"wp-block-list-item\"><strong>QuickStarts<\/strong>: The File &gt; New Project &gt; Cloud dialog includes new templates to demonstrate Microsoft Azure services.<\/li>\n\n\n\n<li class=\"wp-block-list-item\"><strong>WebJobs remote debugging and Server Explorer support<\/strong>: We previously added the ability to publish WebJobs from Console or Web projects.\u00a0 This release adds Server Explorer support and remote debugging.<\/li>\n\n\n\n<li class=\"wp-block-list-item\"><strong>Support for Blob folders in Storage Explorer<\/strong>: View and create folders in Blob Storage containers using Storage Explorer.<\/li>\n\n\n\n<li class=\"wp-block-list-item\"><strong>HDInsight Server Explorer and Hive Query support<\/strong>: Write Hive queries and view Hive jobs, right from Visual Studio.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">\u2219<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Visual Studio 2015 Preview [<a href=\"https:\/\/aka.ms\/vs2015preview\">download<\/a>]<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Azure SDK 2.5 is the first supported Azure SDK for the Visual Studio 2015 Preview. In addition to the Visual Studio 2013 features above, Visual Studio 2015 Preview introduces the following capabilities:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\"><strong>Add Connected Services<\/strong>: Easily connect to services such as Azure Storage and Mobile Services.\u00a0 The flow adds appropriate project references, inserts connection strings and provides getting started guidance on consuming the services.<\/li>\n\n\n\n<li class=\"wp-block-list-item\"><strong>Enterprise SSO<\/strong>: Configure enterprise single sign on (SSO) easily using Azure Active Directory.<\/li>\n\n\n\n<li class=\"wp-block-list-item\"><strong>Connect Visual Studio to multiple Azure accounts<\/strong>: Your Visual Studio sign-in now automatically signs you into your Azure subscriptions. You can also sign in to additional Azure accounts to simultaneously access the Azure subscriptions and resources across all those accounts.<\/li>\n\n\n\n<li class=\"wp-block-list-item\"><strong>Code Analysis for Azure<\/strong>: This NuGet package provides code analysis rules that identify coding patterns which cause performance, scalability or security problems with your Azure applications.<\/li>\n\n\n\n<li class=\"wp-block-list-item\"><strong>ASP.NET 5.0<\/strong>: Publish to Azure has been updated with a Preview tab and performance improvements.<\/li>\n<\/ul>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"diagnostics-improved-diagnostics-logging-with-etw\">Diagnostics: Improved diagnostics logging with ETW<\/h1>\n\n\n\n<p class=\"wp-block-paragraph\">You can now perform structured and sematic logging using ETW Event Sources. ETW event sources and event IDs allow you to define logical events and stages of the application workflow. Track events across multiple tiers to help diagnose issues in your application workflow.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To enable logging of Event Sources, first define an event class in your source. The following snippet shows an <strong>EventSource<\/strong> for a sample guestbook application with two events:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n[EventSource(Name=\"Contoso-GuestBook\")]\npublic sealed class GuestBookEventSource: EventSource\n{\n    ...\n\n    [Event(1, Message = \"Added entry in table storage for guest '{1}'\", \nLevel = EventLevel.Informational)]\n    public void GuestBookEntryAdded (string guestName, Guid activityID )\n    {\n        if (this.IsEnabled()) {WriteEvent(1, guestName, activityID);}\n    }\n\n    [Event(2, Message = \"Queued message to process blob '{0}'\", \nLevel = EventLevel.Informational)]\n    public void ThumbnailRequestPosted(string pictureUrl, Guid activityID)\n    {\n        if (this.IsEnabled()) { WriteEvent(2, pictureUrl, activityID);}\n    }\n    ...\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">After defining the event, log these in your application. For example, in our guestbook application, we log the GuestBookEntryAdded event:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nGuestBookEventSource.Log.GuestBookEntryAdded( entry.GuestName, GuestBookEventSource.CurrentThreadActivityId);\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">Once you are logging the events in your code, configure diagnostics for your Role by right clicking on the Role and selecting\u00a0<strong>Properties<\/strong>. On the\u00a0<strong>Configuration<\/strong>\u00a0property page make sure\u00a0<strong>Enable Diagnostics<\/strong>\u00a0is checked and click the\u00a0<strong>Configure\u2026<\/strong>\u00a0button.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">On the\u00a0<strong>Diagnostics configuration<\/strong>\u00a0dialog go to the\u00a0<strong>ETW Logs<\/strong>\u00a0tab and select\u00a0<strong>Enable transfer of ETW logs<\/strong>. Add the appropriate event sources to transfer by specifying the event source name and clicking on the\u00a0<strong>Add Event Source<\/strong>\u00a0button. Once added, configure additional properties like the storage location for the logs, the log level, any keyword filters and transfer frequency.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/Diagnostics1_thumb.webp\" alt=\"graphical user interface, text, application, email\" class=\"wp-image-8982 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/Diagnostics1_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Once you deploy your Cloud Service, you\u2019ll get a high-level diagnostics overview. To view diagnostics data for a role, right click it and select\u00a0<strong>View diagnostics data<\/strong>. This will display the diagnostics summary page with a new section for ETW Logs. Select the appropriate ETW log table to view corresponding errors.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2015\/03\/clip_image004_thumb.webp\" alt=\"a screenshot of metrics explorer data table\" class=\"wp-image-9170 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2015\/03\/clip_image004_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Since the new diagnostics features use the extension model, you can update the diagnostic configuration for the running service after the cloud service is published. To do so, open\u00a0<strong>Server Explorer<\/strong>\u00a0and right click on the role and select\u00a0<strong>Update Diagnostics<\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"diagnostics-configuring-crash-dumps\">Diagnostics: Configuring crash dumps<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">To configure crash dumps, go to the\u00a0<strong>Crash Dumps<\/strong>\u00a0tab on the Diagnostics Configuration dialog. Just add the name of the process for which you want to collect crash dumps, and diagnostics will collect these in a blob container of your choice. By default, the most common processes for cloud roles are pre-selected for crash dump collection.a<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image006_thumb.webp\" alt=\"graphical user interface, text, application\" class=\"wp-image-8986 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image006_thumb.webp\"><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"diagnostics-virtual-machines\">Diagnostics: Virtual Machines<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">You can now collect diagnostics data from Virtual Machines to monitor your application or debug it through trace logs. To enable diagnostics, open Server Explorer (<strong>View<\/strong>\u00a0&gt;\u00a0<strong>Server Explorer<\/strong>) and right-click on the virtual machine, then select\u00a0<strong>Configure\u2026<\/strong><\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image008_thumb.webp\" alt=\"graphical user interface, text, application\" class=\"wp-image-8988 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image008_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">In the dialog that opens, you\u2019ll see an\u00a0<strong>Installed Extensions<\/strong>\u00a0section. Click on the drop-down menu in this section, select the\u00a0<strong>Microsoft Monitoring Agent Diagnostics<\/strong>\u00a0extension and click\u00a0<strong>Add<\/strong>.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image010_thumb.webp\" alt=\"graphical user interface, text, application, email\" class=\"wp-image-8990 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image010_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">This brings up the diagnostics configuration dialog. The settings are exactly the same as we saw in the PaaS scenarios. So you can develop your diagnostics code with ETW EventSource and set the diagnostics configuration in exactly the same way for IaaS VMs. When you finish configuring what you want to log, save your changes and update the configuration to apply your changes to the virtual machine.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>One limitation of the diagnostics feature in the 2.5 release is that diagnostics logs are not captured when you debug your application locally in the Compute Emulator. You won\u2019t get any performance counters, IIS logs or event logs. In addition, the logs will not be transferred to Azure storage or development storage for the local debug scenarios. To view application logs while debugging the application locally, use System.Diagnostics.Trace which can display traces in the Compute Emulator.<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"azure-resource-manager-tooling\">Azure Resource Manager Tooling<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The Azure Resource Manager tooling allows you to quickly and efficiently create and deploy resources within resource groups for greater organization and repeatability.\u00a0 The tooling uses Azure Gallery templates which allow customization and parameterization, reducing costs when moving from one environment to the next.\u00a0 Get started by creating a deployment project from\u00a0<strong>File-&gt;New Project-&gt; Cloud-&gt; Cloud Deployment Project<\/strong>.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image012_thumb.webp\" alt=\"graphical user interface, text, application\" class=\"wp-image-8992 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image012_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Once you create the project, you will find a list of common Azure Gallery templates. In future releases, more templates will be added for application scenarios that use other Azure features such as networking, storage, virtual machines. Select the template which is closest to the solution you are building.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image014_thumb.webp\" alt=\"graphical user interface, text, application\" class=\"wp-image-8994 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image014_thumb.webp\"><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"your-cloud-app-solution\">Your Cloud App Solution<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Select the\u00a0<strong>Website\u00a0<\/strong>template from the Azure Gallery to create a solution that contains the ASP.NET Website Project and a new project type \u2013 an Azure Resource Manager Deployment project called\u00a0<strong>MyAzureCloudApp.Deployment<\/strong>. The Deployment project includes: a deployment template file (<strong>WebSiteDeploy.json<\/strong>), a template parameter definition (<strong>WebSiteDeploy.param.dev.json<\/strong>), and a PowerShell script (<strong>Publish-AzureResourceGroup.ps1<\/strong>) that can be used to deploy your resources to Azure.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image016_thumb.webp\" alt=\"graphical user interface, text, application\" class=\"wp-image-8996 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image016_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">The deployment template and parameter files make it easy to work in a cloud lifecycle pattern and treat these files as config as code. Notice a parameter file named *.dev.json is created by default \u2013 copying this parameter file and naming it *.test.json or *.staging.json allows for a single template to be used to build out multiple environments.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Visual Studio makes editing these JSON files easy with the built-in JSON editor and includes IntelliSense based on the published JSON schemas.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"create-azure-resources\">Create Azure Resources<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The simplest method to deploy your resources to Azure is to right click on the Deployment Project, and select\u00a0<strong>Deploy &gt; New Deployment\u2026<\/strong>. This will bring up the Deploy to Resource Group dialog.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image018_thumb.webp\" alt=\"graphical user interface, text, application, email\" class=\"wp-image-9000 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image018_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">To create an Azure Resource Group which will contain all of the resources needed for the web application click on the\u00a0<strong>Resource group<\/strong>\u00a0combo box and select\u00a0<strong>Create New to bring up the Create Resource Group dialog<\/strong>. Clicking the\u00a0<strong>Create\u00a0<\/strong>button on the\u00a0<strong>Create Resource Group<\/strong>\u00a0dialog will provision your Azure Resource Group but without any resources yet.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The Deployment template file (websitedeploy.json) and Template Parameter file (websitedeploy.param.dev.json) specify the details for deployment and provisioning or the resources. The storage account is used for uploading your application package to Azure Resource Manager so it can be included in the deployment of the template. If you don\u2019t already have a storage account, you will need to\u00a0<a href=\"https:\/\/azure.microsoft.com\/en-us\/documentation\/articles\/storage-create-storage-account\/\">create a storage account<\/a>\u00a0before continuing.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Clicking the\u00a0<strong>Edit Parameters<\/strong>\u00a0button will bring up a dialog that allows you to specify the website name, web hosting plan name and website location, etc.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image019_thumb.webp\" alt=\"graphical user interface, text, application\" class=\"wp-image-9002 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image019_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">The parameter values will be saved back to the\u00a0<strong>WebSiteDeploy.param.dev.json<\/strong>\u00a0file so the next time you want to deploy this website isn\u2019t necessary to enter this information. Being able to customize and store the local JSON reduces the chance of errors when re-deploying the resources.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Once all the parameters have been specified and saved, click the\u00a0<strong>Deploy<\/strong>\u00a0button to have your application and resources deployed to Azure! You can see detailed progress in the Output window and can view the resource group and all the deployed resources ion the new and enhanced\u00a0<a href=\"https:\/\/portal.azure.com\/\">Azure Portal<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"quickstarts\">QuickStarts<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">QuickStarts provides sample code which demonstrates how to leverage the Azure SDK and other libraries to interact with Azure Services. Find QuickStarts under\u00a0<strong>File -&gt; New Project -&gt; Cloud -&gt; QuickStarts<\/strong>.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/dialog_thumb.webp\" alt=\"graphical user interface, text, application, email\" class=\"wp-image-9004 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/dialog_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">In the current release, there are samples which demonstrate how to use Azure Storage (Blobs, Tables, Queues), DocumentDB, Azure Redis Cache Service, Azure Media Services, Azure WebJobs (Blob, Tables, Queues, Service Bus Queues) and Service Bus (Topics, Queues). There are also samples demonstrating how to use the Microsoft Azure Management Libraries (MAML) to programmatically create resources in Azure with C#.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"webjobs\">WebJobs<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Azure WebJobs and WebJobs SDK are now Generally Available. To learn more about WebJobs and the WebJobs SDK, get started with the\u00a0<a href=\"https:\/\/aka.ms\/webjobs\">Azure WebJobs Recommended Resources<\/a>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">We previously added the ability to publish WebJobs from Console or Web projects. In this release, we add Server Explorer support, as well as remote debugging.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"webjobs-sdk-is-preinstalled-in-webjobs-templates\">WebJobs SDK is preinstalled in WebJobs Templates<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The WebJobs project templates now automatically include references to the\u00a0<a href=\"https:\/\/go.microsoft.com\/fwlink\/?LinkID=320976\">WebJobs SDK<\/a>. During project creation, you specify what type of WebJob is needed:<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image023_thumb.webp\" alt=\"graphical user interface, application\" class=\"wp-image-9006 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image023_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">For on-demand and Scheduled jobs, the files dropped into the project are specific to scheduled or on-demand tasks. The Program.cs file of an on-demand or scheduled job contains code for executing the WebJob explicitly.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image025_thumb.webp\" alt=\"graphical user interface, text, application\" class=\"wp-image-9008 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image025_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Continuous WebJobs get a different Program.cs file. The continuous template code includes a call to start the WebJob host and block it from exiting.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image027_thumb.webp\" alt=\"graphical user interface, text, application\" class=\"wp-image-9010 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image027_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Likewise, the code in the Functions.cs file that is dropped into Continuous WebJob projects includes some of the WebJobs SDK-enabled attributes used for watching Azure Storage Queues.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image029_thumb.webp\" alt=\"graphical user interface, text, application\" class=\"wp-image-9012 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image029_thumb.webp\"><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"webjobs-server-explorer-features\">WebJobs Server Explorer Features<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">WebJobs appear under the corresponding Website in Server Explorer and are grouped according to their run mode.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image031_thumb.webp\" alt=\"graphical user interface, text, application, email\" class=\"wp-image-9014 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image031_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Each WebJob Server Explorer node exposes context menu gestures for added functionality. Getting to a WebJob\u2019s dashboard is as easy as a single menu-click. Developers can also elect to run on-demand or Scheduled WebJobs using the context menu gesture.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image033_thumb.webp\" alt=\"graphical user interface, text, application\" class=\"wp-image-9016 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image033_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Continuous WebJob nodes also provide a one-click method of getting to an Azure WebJob\u2019s dashboard. Continuous WebJobs can be started or stopped from the context menu, as well.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image035_thumb.webp\" alt=\"graphical user interface, text, application\" class=\"wp-image-9018 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image035_thumb.webp\"><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"webjobs-remote-debugging\">WebJobs Remote Debugging<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">We\u2019ve also added Remote Debugging support for continuous WebJobs. Once a Continuous WebJob has started, the Attach Debugger gesture is visible via the context menu of the Continuous WebJob\u2019s node.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image037_thumb.webp\" alt=\"graphical user interface, text, application\" class=\"wp-image-9020 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image037_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">By placing a breakpoint in the code of a Continuous WebJob and attaching the debugger, the code can be stepped through and debugged as though it were running locally in Visual Studio.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image039_thumb.webp\" alt=\"graphical user interface, text, application, email\" class=\"wp-image-9022 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image039_thumb.webp\"><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"storage-explorer\">Storage Explorer<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Blob folders allow you to easily segment groups of blobs into logical units \u2013 this is particularly useful if you\u2019re using one blob container to store all your information. These blob folders are just a prefix for the blob name delimited with the\u00a0<strong>\/<\/strong>\u00a0character. For example, if you have a\u00a0<strong>file.png<\/strong>\u00a0blob inside a\u00a0<strong>pictures<\/strong>\u00a0folder, the URL for that blob will be in the format\u00a0https:\/\/.blob.core.windows.net\/\/<strong>pictures\/file.png<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Starting with this release, you can see and navigate through folders in Azure blob containers from Visual Studio. Navigate through folders by double-clicking on a folder to go inside it, and using the up arrow to go up a level.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image041_thumb.webp\" alt=\"graphical user interface, text, application\" class=\"wp-image-9024 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image041_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Additionally, you can create folders when uploading a blob to Azure Storage using the upload button.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"hdinsight-server-explorer-and-hive-query-support\">HDInsight Server Explorer and Hive Query Support<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Now the SDK includes tools in Server Explorer that make you more productive working with your Big Data using HDInsight\u2019s hosted Hadoop services and using Hive to query your datasets.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Like any other Azure service, you can browse the HDInsight resources in your subscription and do common dev-test tasks.\u00a0 You can use the Server Explorer to easily browse your Hive tables, examine schemas, and even query the first 100 rows of a table.\u00a0 This helps you understand the shape of the data you are working with.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Also, there is tooling to create Hive queries and submit them as jobs. Use the context menu against a Hadoop cluster to immediately begin with \u201cWrite a Hive Query\u201d for quick scripts. The Job Browser tool helps you visualize the job submissions and status.\u00a0 Double click on any job to get a summary and details in the Hive Job Summary window.\u00a0 In the example below, we query the table with geographic info to find the count of all countries and then sort by country.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Last, the backing blob storage used by HDInsight is listed in the explorer.\u00a0 You can navigate to any blob container and open it to work with files. The backing store is associated with the Hadoop cluster during cluster creation in the Azure dashboard. Management of the Hadoop cluster is still performed in the same Azure dashboard.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image002_thumb.webp\" alt=\"table\" class=\"wp-image-9026 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image002_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">For more complex script development and lifecycle management you can create Hive projects within Visual Studio. In the new project dialog (see below) you will find a new HDInsight Template category. A helpful starting point is the Hive Sample project type. This project is pre-populated with a more complex Hive query and sample data for the case of processing web server logs.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image0041_thumb.webp\" alt=\"graphical user interface, text, application\" class=\"wp-image-9028 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image0041_thumb.webp\"><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"visual-studio-2015-preview\">Visual Studio 2015 Preview<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Azure SDK 2.5 is the first supported Azure SDK for the Visual Studio 2015 Preview. In addition to the Visual Studio 2013 features above, Visual Studio 2015 Preview introduces the following capabilities.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"sign-in-with-multiple-accounts\">Sign-in with multiple accounts<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Sign into Visual Studio 2015 Preview with an account that is also associated with your Azure Subscription, and you will automatically be signed into Azure. Server Explorer will display your Azure resources. There is no longer the need to sign in twice with the same account!<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">You can now also sign in simultaneously with multiple accounts. As an example, you can sign in with your Microsoft Account associated with an MSDN subscription and simultaneously sign in with your organization account for your company\u2019s subscription. To sign in with another account, right click on the Azure node in Server Explorer and choose\u00a0<strong>Manage Subscriptions.\u00a0<\/strong>This will bring up the Manage Microsoft Azure Subscriptions dialog where you see all the Accounts that you have added to Visual Studio. To add a new account simply click on the Add an account link.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image043_thumb.webp\" alt=\"graphical user interface, text, application, email\" class=\"wp-image-9030 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image043_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">You can also uncheck accounts, subscriptions, regions or certificates in this dialog to filter the associated resources in Server Explorer.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Note: Another nice improvement to sign-in capabilities is the ability to view your SQL Databases in Server Explorer without the need to import a certificate. This particular feature is also available in Visual Studio 2013 Update 4. Simply sign into your Azure account and view your SQL Databases in Server Explorer.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"add-connected-services\">Add Connected Services<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The new Add Connected Service dialog in Visual Studio 2015 enables you to easily connect your application to Azure Storage, Azure Mobile Services, Office 365, and Salesforce. You can also set up Azure Active Directory single sign on.<br>To add a connection to Azure Storage from an ASP.NET Web application, right click on the References node and select\u00a0<strong>Add Connected Service\u2026<\/strong><\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image045_thumb.webp\" alt=\"graphical user interface, text, application, email\" class=\"wp-image-9032 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image045_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">In the Add Connected Service dialog, select\u00a0<strong>Azure Storage<\/strong>\u00a0from the list of service providers and click\u00a0<strong>Configure<\/strong>.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image047_thumb.webp\" alt=\"graphical user interface, text, application\" class=\"wp-image-9034 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image047_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">In the subsequent Azure Storage dialog, you will see a list of storage accounts available to you from your various subscriptions. Choose an existing storage account or provision a new one. After selecting an account, click\u00a0<strong>Add\u00a0<\/strong>to connect to that storage account from your application.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image049_thumb.webp\" alt=\"graphical user interface, text, application, email\" class=\"wp-image-9036 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image049_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">The dialog will add Azure Storage references using the latest Storage NuGet package and a connection string for your selected storage account in web.config. You then see a Getting Started page to illustrating next steps for using Azure Storage. Revisit the Getting Started page by right clicking on the\u00a0<strong>GettingStarted.html<\/strong>\u00a0file in Solution Explorer and choosing\u00a0<strong>View in Browser<\/strong>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Send us feedback by clicking on the Send a Smile icon in the Add Connected Services dialog. We\u2019d love to hear any feedback.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"enterprise-single-sign-on\">Enterprise Single Sign On<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A common task for business application is to configure the application for enterprise single sign on using Azure Active Directory. You can now do this easily at any point during the construction of your application by right clicking on your application and selecting\u00a0<strong>Configure Azure AD Authentication<\/strong>. This will bring up a wizard similar to the Add Connected Service experience to guide you through the process of configuring your application to work with Active Directory. Specifying an Active Directory Domain in the wizard will register your application with that Active Directory and configure your application to prompt for sign in. Registering your application in a domain is a great way to get started in a dev-test environment. You can easily reconfigure the application\u2019s config files to use other domains as you move from one environment to the next in the application\u2019s lifecycle. You can find out more about this feature in the\u00a0<a href=\"https:\/\/channel9.msdn.com\/Events\/Visual-Studio\/Connect-event-2014\/411\">Azure Active Directory Overview<\/a>\u00a0video.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/foo-537x369-1.webp\" alt=\"graphical user interface, text, application\" class=\"wp-image-9038 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/foo-537x369-1.webp\"><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"microsoft-code-analysis-for-azure-preview\">Microsoft Code Analysis for Azure Preview<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The .NET Compiler Platform in Visual Studio 2015 Preview provides new code analysis capabilities which detect code issues in real time as you write your code. Leveraging these capabilities, we have put together a small set of code analysis rules for Azure available through the Microsoft Code Analysis for Azure NuGet package. These rules identify issues in your code and when possible recommend automatic fixes.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To install the package, right click your solution and choose\u00a0<strong>Manage NuGet Packages for Solution.<\/strong>\u00a0Make sure\u00a0<strong>Include Prerelease<\/strong>\u00a0checkbox is checked and Search for\u00a0<strong>Azure Code Analysis<\/strong>.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image051_thumb.webp\" alt=\"graphical user interface, application\" class=\"wp-image-9040 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image051_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">This should find the\u00a0<strong>Microsoft.VisualStudio.Azure.CodeAnalysis<\/strong>\u00a0package<strong>.<\/strong>\u00a0Select projects in your solution and click\u00a0<strong>Install<\/strong>\u00a0to enable code analysis for those projects. Once an analyzer is added to the project, code analysis is always running. To run code analysis on the entire solution, build the solution. Any code analysis warnings or errors will automatically show up in the error list as you are make edits to a source file.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">As you code, any line which has an issue will display a red (for errors) or green (for warning) underline. Hover over the underlined code to get more information. Click on the light bulb next to the issue to get additional details on fixes. For example, the screenshot below shows a code issue with the Run() method of a worker role being declared as async. This is a common scenario where you might want to perform some asynchronous operations in a worker role. However, declaring the Run() method itself as async will cause the role to restart in an infinite loop. We detect the issue and through the light bulb menu offer an automatic fix which will refactor the Run() method moving any async operations to another method.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image053_thumb.webp\" alt=\"graphical user interface, text, application, chat or text message\" class=\"wp-image-9042 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/clip_image053_thumb.webp\"><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Not all code issues have automatic fixes. If we can\u2019t provide an automatic fix, the light bulb menu will point you to documentation describing how to fix the issue.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The code analysis rules provided in the NuGet package are just an initial set of rules designed to showcase the code analysis capabilities in the new .NET compiler. As we receive feedback, we will provide more rules and continue to iterate on the experience.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"asp-net-5-0-publish\">ASP.NET 5.0 Publish<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">You can publish ASP.NET 5.0 (vNext) projects by right-clicking the project and selecting\u00a0<strong>Publish<\/strong>. New in this release, the Preview tab is now enabled so you can see which files are about to be uploaded:<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/Publish1_thumb.webp\" alt=\"graphical user interface, text, application\" class=\"wp-image-9044 webp-format\" data-orig-src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/Publish1_thumb.webp\"><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"summary\">Summary<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Azure SDK 2.5 and Visual Studio 2015 Preview make it easier than ever to get started developing rich cloud applications. Along with the Azure Developer Center\u2019s growing set of .NET developer resources, today\u2019s releases should make your development experience more enjoyable and efficient. Please make sure to see the\u00a0<a href=\"https:\/\/msdn.microsoft.com\/en-us\/library\/azure\/dn873976.aspx\">Azure SDK 2.5 release notes<\/a>\u00a0for information about breaking changes from previous versions and known issues with the preview features.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you don\u2019t already have an Azure account, you can sign-up for a free trial and start using all of the above features today. You can then visit the\u00a0<a href=\"https:\/\/azure.microsoft.com\/en-us\/develop\/net\/\">Azure Developer Center<\/a>\u00a0to learn more about how to build apps with it. There are two ways to get started with the SDK:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">Install the SDK locally: Download for\u00a0<a href=\"https:\/\/www.microsoft.com\/web\/handlers\/webpi.ashx\/getinstaller\/VWDOrVs2013AzurePack.appids\">VS 2013<\/a>\u00a0|\u00a0<a href=\"https:\/\/www.microsoft.com\/web\/handlers\/webpi.ashx\/getinstaller\/VWDOrVs11AzurePack.appids\">VS 2012<\/a>\u00a0|\u00a0<a href=\"https:\/\/www.microsoft.com\/web\/handlers\/webpi.ashx\/getinstaller\/VWDOrVs2015AzurePack.appids\">VS 2015 Preview<\/a><\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">VM Image in Azure: The fastest way to get started with Azure SDK 2.5 is by using the image either for Visual Studio 2015 Preview with Azure SDK 2.5 or Visual Studio Community 2013 with Azure SDK 2.5 from the Azure Virtual Machine gallery. Both of these images are available to all Azure customers. If you are a MSDN subscriber, you can also take advantages of additional Visual Studio 2013 images based on Windows 8.1 and Windows Server 2012 which have been updated to Visual Studio Update 4 and Azure SDK 2.5<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Credits<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>This blog article is a collaboration of multiple people. Big thanks to Saurabh Bhatia and the Azure Cloud Tools team.<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Today, we are excited to announce Azure SDK 2.5 for Visual Studio 2012, 2013 and 2015 Preview. We are also excited to announce Visual Studio 2015 Preview which adds even more Azure features.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"ms_queue_id":[],"ep_exclude_from_search":false,"_classifai_error":"","_classifai_text_to_speech_error":"","_alt_title":"","footnotes":"","msx_community_cta_settings":[]},"categories":[1551],"tags":[],"audience":[3055],"content-type":[],"product":[1627,1552],"tech-community":[],"topic":[],"coauthors":[97],"class_list":["post-5742","post","type-post","status-publish","format-standard","hentry","category-developer-tools","audience-developers","product-sdks","product-visual-studio","review-flag-1680286580-543","review-flag-1680286581-295","review-flag-1-1680286581-825","review-flag-2-1680286581-601","review-flag-4-1680286581-250","review-flag-5-1680286581-950","review-flag-8-1680286581-263","review-flag-alway-1680286580-106","review-flag-free-1680286579-836","review-flag-lever-1680286579-649","review-flag-new-1680286579-546","review-flag-vm-1680286585-143"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Announcing Azure SDK 2.5 for .NET and Visual Studio 2015 Preview | Microsoft Azure Blog<\/title>\n<meta name=\"description\" content=\"Today, we are excited to announce Azure SDK 2.5 for Visual Studio 2012, 2013 and 2015 Preview. We are also excited to announce Visual Studio 2015 Preview which adds even more Azure features.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Announcing Azure SDK 2.5 for .NET and Visual Studio 2015 Preview | Microsoft Azure Blog\" \/>\n<meta property=\"og:description\" content=\"Today, we are excited to announce Azure SDK 2.5 for Visual Studio 2012, 2013 and 2015 Preview. We are also excited to announce Visual Studio 2015 Preview which adds even more Azure features.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/\" \/>\n<meta property=\"og:site_name\" content=\"Microsoft Azure Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/microsoftazure\" \/>\n<meta property=\"article:published_time\" content=\"2014-11-12T00:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-16T15:36:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/Diagnostics1_thumb.png\" \/>\n<meta name=\"author\" content=\"Microsoft Azure\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@azure\" \/>\n<meta name=\"twitter:site\" content=\"@azure\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Microsoft Azure\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"22 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/\"},\"author\":[{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/microsoft-azure\/\",\"@type\":\"Person\",\"@name\":\"Microsoft Azure\"}],\"headline\":\"Announcing Azure SDK 2.5 for .NET and Visual Studio 2015 Preview\",\"datePublished\":\"2014-11-12T00:00:00+00:00\",\"dateModified\":\"2025-09-16T15:36:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/\"},\"wordCount\":3627,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/Diagnostics1_thumb.png\",\"articleSection\":[\"Developer tools\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/\",\"name\":\"Announcing Azure SDK 2.5 for .NET and Visual Studio 2015 Preview | Microsoft Azure Blog\",\"isPartOf\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/Diagnostics1_thumb.png\",\"datePublished\":\"2014-11-12T00:00:00+00:00\",\"dateModified\":\"2025-09-16T15:36:52+00:00\",\"description\":\"Today, we are excited to announce Azure SDK 2.5 for Visual Studio 2012, 2013 and 2015 Preview. We are also excited to announce Visual Studio 2015 Preview which adds even more Azure features.\",\"breadcrumb\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/#primaryimage\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/Diagnostics1_thumb.webp\",\"contentUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/Diagnostics1_thumb.webp\",\"width\":610,\"height\":454,\"caption\":\"graphical user interface, text, application, email\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog home\",\"item\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Developer tools\",\"item\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/category\/developer-tools\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Announcing Azure SDK 2.5 for .NET and Visual Studio 2015 Preview\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#website\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\",\"name\":\"Microsoft Azure Blog\",\"description\":\"Get the latest Azure news, updates, and announcements from the Azure blog. From product updates to hot topics, hear from the Azure experts.\",\"publisher\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\",\"name\":\"Microsoft Azure Blog\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp\",\"contentUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp\",\"width\":512,\"height\":512,\"caption\":\"Microsoft Azure Blog\"},\"image\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/microsoftazure\",\"https:\/\/x.com\/azure\",\"https:\/\/www.instagram.com\/microsoftdeveloper\/\",\"https:\/\/www.linkedin.com\/company\/16188386\",\"https:\/\/www.youtube.com\/user\/windowsazure\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/person\/c702e5edd662b328b49b7e1180cab117\",\"name\":\"shakir\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g7664e653ea371ce16eaf75e9fa8952c4\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g\",\"caption\":\"shakir\"},\"sameAs\":[\"https:\/\/azure.microsoft.com\"],\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/shakir\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Announcing Azure SDK 2.5 for .NET and Visual Studio 2015 Preview | Microsoft Azure Blog","description":"Today, we are excited to announce Azure SDK 2.5 for Visual Studio 2012, 2013 and 2015 Preview. We are also excited to announce Visual Studio 2015 Preview which adds even more Azure features.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/","og_locale":"en_US","og_type":"article","og_title":"Announcing Azure SDK 2.5 for .NET and Visual Studio 2015 Preview | Microsoft Azure Blog","og_description":"Today, we are excited to announce Azure SDK 2.5 for Visual Studio 2012, 2013 and 2015 Preview. We are also excited to announce Visual Studio 2015 Preview which adds even more Azure features.","og_url":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/","og_site_name":"Microsoft Azure Blog","article_publisher":"https:\/\/www.facebook.com\/microsoftazure","article_published_time":"2014-11-12T00:00:00+00:00","article_modified_time":"2025-09-16T15:36:52+00:00","og_image":[{"url":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/Diagnostics1_thumb.png","type":"","width":"","height":""}],"author":"Microsoft Azure","twitter_card":"summary_large_image","twitter_creator":"@azure","twitter_site":"@azure","twitter_misc":{"Written by":"Microsoft Azure","Est. reading time":"22 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/#article","isPartOf":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/"},"author":[{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/microsoft-azure\/","@type":"Person","@name":"Microsoft Azure"}],"headline":"Announcing Azure SDK 2.5 for .NET and Visual Studio 2015 Preview","datePublished":"2014-11-12T00:00:00+00:00","dateModified":"2025-09-16T15:36:52+00:00","mainEntityOfPage":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/"},"wordCount":3627,"commentCount":0,"publisher":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization"},"image":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/#primaryimage"},"thumbnailUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/Diagnostics1_thumb.png","articleSection":["Developer tools"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/","name":"Announcing Azure SDK 2.5 for .NET and Visual Studio 2015 Preview | Microsoft Azure Blog","isPartOf":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/#primaryimage"},"image":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/#primaryimage"},"thumbnailUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/Diagnostics1_thumb.png","datePublished":"2014-11-12T00:00:00+00:00","dateModified":"2025-09-16T15:36:52+00:00","description":"Today, we are excited to announce Azure SDK 2.5 for Visual Studio 2012, 2013 and 2015 Preview. We are also excited to announce Visual Studio 2015 Preview which adds even more Azure features.","breadcrumb":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/#primaryimage","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/Diagnostics1_thumb.webp","contentUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2014\/11\/Diagnostics1_thumb.webp","width":610,"height":454,"caption":"graphical user interface, text, application, email"},{"@type":"BreadcrumbList","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-azure-sdk-2-5-for-net-and-visual-studio-2015-preview\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog home","item":"https:\/\/azure.microsoft.com\/en-us\/blog\/"},{"@type":"ListItem","position":2,"name":"Developer tools","item":"https:\/\/azure.microsoft.com\/en-us\/blog\/category\/developer-tools\/"},{"@type":"ListItem","position":3,"name":"Announcing Azure SDK 2.5 for .NET and Visual Studio 2015 Preview"}]},{"@type":"WebSite","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#website","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/","name":"Microsoft Azure Blog","description":"Get the latest Azure news, updates, and announcements from the Azure blog. From product updates to hot topics, hear from the Azure experts.","publisher":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/azure.microsoft.com\/en-us\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization","name":"Microsoft Azure Blog","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp","contentUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp","width":512,"height":512,"caption":"Microsoft Azure Blog"},"image":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/microsoftazure","https:\/\/x.com\/azure","https:\/\/www.instagram.com\/microsoftdeveloper\/","https:\/\/www.linkedin.com\/company\/16188386","https:\/\/www.youtube.com\/user\/windowsazure"]},{"@type":"Person","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/person\/c702e5edd662b328b49b7e1180cab117","name":"shakir","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g7664e653ea371ce16eaf75e9fa8952c4","url":"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g","caption":"shakir"},"sameAs":["https:\/\/azure.microsoft.com"],"url":"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/shakir\/"}]}},"msxcm_display_generated_audio":false,"msxcm_animated_featured_image":null,"distributor_meta":false,"distributor_terms":false,"distributor_media":false,"distributor_original_site_name":"Microsoft Azure Blog","distributor_original_site_url":"https:\/\/azure.microsoft.com\/en-us\/blog","push-errors":false,"_links":{"self":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/5742","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/comments?post=5742"}],"version-history":[{"count":1,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/5742\/revisions"}],"predecessor-version":[{"id":46304,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/5742\/revisions\/46304"}],"wp:attachment":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/media?parent=5742"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/categories?post=5742"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/tags?post=5742"},{"taxonomy":"audience","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/audience?post=5742"},{"taxonomy":"content-type","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/content-type?post=5742"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/product?post=5742"},{"taxonomy":"tech-community","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/tech-community?post=5742"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/topic?post=5742"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/coauthors?post=5742"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}