{"id":6404,"date":"2016-03-22T22:22:18","date_gmt":"2016-03-22T22:22:18","guid":{"rendered":"https:\/\/blogs.msdn.microsoft.com\/webdev\/?p=6404"},"modified":"2021-11-01T05:00:31","modified_gmt":"2021-11-01T12:00:31","slug":"notes-from-the-asp-net-community-standup-march-22-2016","status":"publish","type":"post","link":"https:\/\/devblogs.microsoft.com\/dotnet\/notes-from-the-asp-net-community-standup-march-22-2016\/","title":{"rendered":"Notes from the ASP.NET Community Standup \u2013 March 22, 2016"},"content":{"rendered":"<p>This is the next in a series of blog posts that will cover the topics discussed in the ASP.NET Community Standup.\u00a0 The community standup is a short video-based discussion with some of the leaders of the ASP.NET development teams covering the accomplishments of the team on the new ASP.NET Core framework over the previous week.\u00a0 Within 30 minutes,\u00a0<a href=\"https:\/\/twitter.com\/shanselman\">Scott Hanselman<\/a>,\u00a0<a href=\"https:\/\/twitter.com\/damianedwards\">Damian Edwards<\/a>,\u00a0<a href=\"https:\/\/twitter.com\/jongalloway\">Jon Galloway<\/a>\u00a0and an occasional guest or two discuss new features and ask for feedback on important decisions being made by the ASP.NET development teams.<\/p>\n<p>Each week the standup is hosted live on Google Hangouts and the team publishes the recorded video of their discussion to YouTube for later reference. The guys answer your questions LIVE and unfiltered. \u00a0This is your chance to ask about the why and what of ASP.NET! \u00a0Join them each Tuesday on <a href=\"http:\/\/live.asp.net\">live.asp.net<\/a> where the meeting\u2019s schedule is posted and hosted.<\/p>\n<p>This week\u2019s meeting is below:<\/p>\n<div style=\"text-align: center;\">\n  <iframe width=\"560\" height=\"315\" src=\"https:\/\/www.youtube.com\/embed\/MlkKj2LiI9Q\" allowfullscreen><\/iframe>\n<\/div>\n<p>This week, Jon was not on the call to share the community links of the week but Scott and Damian jumped right in to discussing the week&#8217;s accomplishments.<\/p>\n<h3>Accomplishments<\/h3>\n<p>The BUILD conference is &#8216;eating the world&#8217; according to Scott.\u00a0 He is focused on preparing and Damian is working through preparations for ASP.NET Core RC2.\u00a0 The goal with the ASP.NET Core team is not to complete it for a conference date, but to deliver a product when it is properly completed with a set of high quality features.<\/p>\n<p>Damian is hearing comments from the community that folks are &#8216;losing confidence&#8217;.\u00a0 Microsoft is very invested in this effort, with more than five teams working on the framework and platforms.\u00a0 The team is patching the RC1 dnx and dnu tooling so that it will interoperate with the .NET CLI version of the world when it arrives in RC2.<\/p>\n<p>Scott pushed on this, and they decided to depart from the typical standup format and pair-program with the current, most unstable ASP.NET Core build.<\/p>\n<p>We learned how to enable the unstable DNX feed using an environment variable:<\/p>\n<p style=\"margin: 0in;font-family: Calibri;font-size: 11.0pt\">SET DNX_UNSTABLE_FEED=https:\/\/www.myget.org\/F\/aspnetcidev\/api\/v2<\/p>\n<p>This environment variable is then picked up by the dnvm (dot net version manager) utility and displayed when dnvm is executed at the command-line:<\/p>\n<p><a href=\"http:\/\/devblogs.microsoft.com\/aspnet\/wp-content\/uploads\/sites\/16\/2016\/03\/dnvm.png\"><img decoding=\"async\" class=\" size-full wp-image-6413 aligncenter\" src=\"https:\/\/devblogs.microsoft.com\/aspnet\/wp-content\/uploads\/sites\/16\/2016\/03\/dnvm-1.png\" alt=\"dnvm output\" width=\"884\" height=\"198\" \/><\/a><\/p>\n<p>Scott then proceeded to update dnx to the latest version from the unstable feed with the command:<\/p>\n<pre>dnvm upgrade -u<\/pre>\n<p>He updated the CoreCLR version of the dnx with the following command:<\/p>\n<pre>dnvm upgrade -u -r coreclr<\/pre>\n<p>The folks who are following along with the latest ASP.NET Core work go through this dnx update process daily and it is not expected that this is something that will need to be done by developers when the RTM version of ASP.NET Core is published.<\/p>\n<p>Damian showed Scott how to get the current nightly build of the .NET CLI.\u00a0 They opened a browser and navigated to:\u00a0 <a href=\"http:\/\/github.com\/dotnet\/cli\" target=\"_blank\" rel=\"noopener noreferrer\">http:\/\/github.com\/dotnet\/cli\u00a0<\/a>\u00a0 In the readme document, there is a list of installers for different processor architectures and operating systems.\u00a0 Scott grabbed the binaries for the Windows x64 version that matched his machine and extracted the zip file into:<\/p>\n<pre>%LOCALAPPDATA%Microsoftdotnetcli<\/pre>\n<p>Next, Scott put the location of the CLI folder that was just populated on his user path.<\/p>\n<p>Scott was then able to run the dotnet command-line tool by executing <code>dotnet<\/code><\/p>\n<p>In this state, Scott&#8217;s machine bridged the .NET CLI and dnx tools.\u00a0 The design implemented utilizes dnx to get RC1 tooling working in Visual Studio with the .NET CLI.\u00a0 The tooling in Visual Studio is constructed so that it will use the version of dnx that is configured with the default alias.<\/p>\n<p>Scott created a new project by executing &#8220;dotnet new&#8221; at the command-line and was then able to open that as a project in Visual Studio 2015 by instructing it to open the project.json file inside of the new project folder.\u00a0 Damian pointed out that Visual Studio will call the dnx and dnu commands that will execute and behave the same as the dotnet commands.<\/p>\n<p>Unfortunately, the random continuous integration package versions that Scott grabbed were not functioning properly and Scott was unable to use those versions to run a simple &#8216;Hello-World&#8217; application.<\/p>\n<p>Damian explained the ideal workflow for new ASP.NET Core developers: a developers starts with a click on a download button at the ASP.NET Website and receive the dotnet executable.\u00a0 They should then be able to run dotnet new to start a new application, dotnet run to compile and run that application and then dotnet publish to place the output of the app in a separate folder appropriate for publication.\u00a0 Once delivered, users should be able to run dotnet &lt;assemblyname&gt; to run the application that was published.<\/p>\n<h3><b>Questions:<\/b><\/h3>\n<p><strong>Question:<\/strong> Why are you &#8216;wasting time&#8217; keeping dnx running instead of focusing on .NET CLI?<\/p>\n<p>&#8212; The new dnx is a shim layer that will enable Visual Studio to work with the .NET CLI builds.\u00a0 This will be kept up until the new Visual Studio tools are ready to support .NET CLI.<\/p>\n<p><strong>Question:<\/strong> Is there support in Azure Cloud Service for Web Roles using ASP.NET Core?<\/p>\n<p>&#8212; Nothing new\u2026 You would need to get it running manually on the webrole by creating a webrole deployment project to bring in the entire set of .NET Core tooling.\u00a0 Scott did something similar with Ruby in the past.<\/p>\n<p><strong>Question:<\/strong> Is NETStandard the proper casing for the TFM?<\/p>\n<p>&#8212; Yes, the NET is a marketing reference to the .NET Framework and should be uppercase.<\/p>\n<p><strong>Question:<\/strong> System.Net.Mail is not available yet on .NET Core.\u00a0 Should I wait or use another library?<\/p>\n<p>&#8212; Good question, check in the <a href=\"https:\/\/github.com\/dotnet\/core\/issues\" target=\"_blank\" rel=\"noopener noreferrer\">dotnet\/corefx repo for an issue<\/a> about this.\u00a0 Previously, there was a blog post shared during the standup from <a href=\"http:\/\/www.elanderson.net\/2016\/02\/emails-using-mailgun-in-asp-net-core\/\" target=\"_blank\" rel=\"noopener noreferrer\">Eric Anderson about using Mailgun<\/a> to send emails.<\/p>\n<p>Thank you to everyone that tuned in to the live recording and asked questions.\u00a0 The team is always looking forward to hearing for you.\u00a0 Join us on March 29th at 22:45 UTC, 18:45 ET, 15:45PT or just check the timer at <a href=\"http:\/\/live.asp.net\" target=\"_blank\" rel=\"noopener noreferrer\">http:\/\/live.asp.net<\/a> for exact time in your timezone as well as a reminder that you can add to your calendar.<\/p>\n<p>&nbsp;<\/p>\n<p><code> &lt;![CDATA[\nif (typeof(lpcurruser) == 'undefined') lpcurruser = ''; if (document.getElementById('lpcurruserelt') &amp;&amp; document.getElementById('lpcurruserelt').value != '') { lpcurruser = document.getElementById('lpcurruserelt').value; document.getElementById('lpcurruserelt').value = ''; } if (typeof(lpcurrpass) == 'undefined') lpcurrpass=''; if (document.getElementById('lpcurrpasselt') &amp;&amp; document.getElementById('lpcurrpasselt').value != '') { lpcurrpass = document.getElementById('lpcurrpasselt').value; document.getElementById('lpcurrpasselt').value = ''; } var lploc=\"1\";var lponlyfill=null;var link=document.getElementById(\"i1668\"); if(link&amp;&amp;typeof(g_lpclicked)==\"undefined\"){if(document.createEventObject){var evt = document.createEventObject();link.fireEvent(\"onclick\",evt);}else{var evt2 = document.createEvent(\"MouseEvents\");evt2.initMouseEvent(\"click\", true, true, document.defaultView, 1, 0, 0, 0, 0, false, false, false, false, 0, null);link.dispatchEvent(evt2);}g_lpclicked=1;} if(lploc==3){var pholders=[\"idDiv_PWD_UsernameExample\",\"idDiv_PWD_PasswordExample\",\"i0116_hint\",\"i0118_hint\"]; for(var i=0;i\/\/ &lt;![CDATA[\nif (typeof(lpcurruser) == 'undefined') lpcurruser = ''; if (document.getElementById('lpcurruserelt') &amp;&amp; document.getElementById('lpcurruserelt').value != '') { lpcurruser = document.getElementById('lpcurruserelt').value; document.getElementById('lpcurruserelt').value = ''; } if (typeof(lpcurrpass) == 'undefined') lpcurrpass=''; if (document.getElementById('lpcurrpasselt') &amp;&amp; document.getElementById('lpcurrpasselt').value != '') { lpcurrpass = document.getElementById('lpcurrpasselt').value; document.getElementById('lpcurrpasselt').value = ''; } var lploc=\"1\";var lponlyfill=null;var link=document.getElementById(\"i1668\"); if(link&amp;&amp;typeof(g_lpclicked)==\"undefined\"){if(document.createEventObject){var evt = document.createEventObject();link.fireEvent(\"onclick\",evt);}else{var evt2 = document.createEvent(\"MouseEvents\");evt2.initMouseEvent(\"click\", true, true, document.defaultView, 1, 0, 0, 0, 0, false, false, false, false, 0, null);link.dispatchEvent(evt2);}g_lpclicked=1;} if(lploc==3){var pholders=[\"idDiv_PWD_UsernameExample\",\"idDiv_PWD_PasswordExample\",\"i0116_hint\",\"i0118_hint\"]; for(var i=0;i\/\/ &lt;![CDATA[\nif (typeof(lpcurruser) == 'undefined') lpcurruser = ''; if (document.getElementById('lpcurruserelt') &amp;&amp; document.getElementById('lpcurruserelt').value != '') { lpcurruser = document.getElementById('lpcurruserelt').value; document.getElementById('lpcurruserelt').value = ''; } if (typeof(lpcurrpass) == 'undefined') lpcurrpass=''; if (document.getElementById('lpcurrpasselt') &amp;&amp; document.getElementById('lpcurrpasselt').value != '') { lpcurrpass = document.getElementById('lpcurrpasselt').value; document.getElementById('lpcurrpasselt').value = ''; } var lploc=\"1\";var lponlyfill=null;var link=document.getElementById(\"i1668\"); if(link&amp;&amp;typeof(g_lpclicked)==\"undefined\"){if(document.createEventObject){var evt = document.createEventObject();link.fireEvent(\"onclick\",evt);}else{var evt2 = document.createEvent(\"MouseEvents\");evt2.initMouseEvent(\"click\", true, true, document.defaultView, 1, 0, 0, 0, 0, false, false, false, false, 0, null);link.dispatchEvent(evt2);}g_lpclicked=1;} if(lploc==3){var pholders=[\"idDiv_PWD_UsernameExample\",\"idDiv_PWD_PasswordExample\",\"i0116_hint\",\"i0118_hint\"]; for(var i=0;i\/\/ &lt;![CDATA[\nif (typeof(lpcurruser) == 'undefined') lpcurruser = ''; if (document.getElementById('lpcurruserelt') &amp;&amp; document.getElementById('lpcurruserelt').value != '') { lpcurruser = document.getElementById('lpcurruserelt').value; document.getElementById('lpcurruserelt').value = ''; } if (typeof(lpcurrpass) == 'undefined') lpcurrpass=''; if (document.getElementById('lpcurrpasselt') &amp;&amp; document.getElementById('lpcurrpasselt').value != '') { lpcurrpass = document.getElementById('lpcurrpasselt').value; document.getElementById('lpcurrpasselt').value = ''; } var lploc=\"1\";var lponlyfill=null;var link=document.getElementById(\"i1668\"); if(link&amp;&amp;typeof(g_lpclicked)==\"undefined\"){if(document.createEventObject){var evt = document.createEventObject();link.fireEvent(\"onclick\",evt);}else{var evt2 = document.createEvent(\"MouseEvents\");evt2.initMouseEvent(\"click\", true, true, document.defaultView, 1, 0, 0, 0, 0, false, false, false, false, 0, null);link.dispatchEvent(evt2);}g_lpclicked=1;} if(lploc==3){var pholders=[\"idDiv_PWD_UsernameExample\",\"idDiv_PWD_PasswordExample\",\"i0116_hint\",\"i0118_hint\"]; for(var i=0;i\/\/ &lt;![CDATA[\nif (typeof(lpcurruser) == 'undefined') lpcurruser = ''; if (document.getElementById('lpcurruserelt') &amp;&amp; document.getElementById('lpcurruserelt').value != '') { lpcurruser = document.getElementById('lpcurruserelt').value; document.getElementById('lpcurruserelt').value = ''; } if (typeof(lpcurrpass) == 'undefined') lpcurrpass=''; if (document.getElementById('lpcurrpasselt') &amp;&amp; document.getElementById('lpcurrpasselt').value != '') { lpcurrpass = document.getElementById('lpcurrpasselt').value; document.getElementById('lpcurrpasselt').value = ''; } var lploc=\"1\";var lponlyfill=null;var link=document.getElementById(\"i1668\"); if(link&amp;&amp;typeof(g_lpclicked)==\"undefined\"){if(document.createEventObject){var evt = document.createEventObject();link.fireEvent(\"onclick\",evt);}else{var evt2 = document.createEvent(\"MouseEvents\");evt2.initMouseEvent(\"click\", true, true, document.defaultView, 1, 0, 0, 0, 0, false, false, false, false, 0, null);link.dispatchEvent(evt2);}g_lpclicked=1;} if(lploc==3){var pholders=[\"idDiv_PWD_UsernameExample\",\"idDiv_PWD_PasswordExample\",\"i0116_hint\",\"i0118_hint\"]; for(var i=0;i\/\/ &lt;![CDATA[\nif (typeof(lpcurruser) == 'undefined') lpcurruser = ''; if (document.getElementById('lpcurruserelt') &amp;&amp; document.getElementById('lpcurruserelt').value != '') { lpcurruser = document.getElementById('lpcurruserelt').value; document.getElementById('lpcurruserelt').value = ''; } if (typeof(lpcurrpass) == 'undefined') lpcurrpass=''; if (document.getElementById('lpcurrpasselt') &amp;&amp; document.getElementById('lpcurrpasselt').value != '') { lpcurrpass = document.getElementById('lpcurrpasselt').value; document.getElementById('lpcurrpasselt').value = ''; } var lploc=\"1\";var lponlyfill=null;var link=document.getElementById(\"i1668\"); if(link&amp;&amp;typeof(g_lpclicked)==\"undefined\"){if(document.createEventObject){var evt = document.createEventObject();link.fireEvent(\"onclick\",evt);}else{var evt2 = document.createEvent(\"MouseEvents\");evt2.initMouseEvent(\"click\", true, true, document.defaultView, 1, 0, 0, 0, 0, false, false, false, false, 0, null);link.dispatchEvent(evt2);}g_lpclicked=1;} if(lploc==3){var pholders=[\"idDiv_PWD_UsernameExample\",\"idDiv_PWD_PasswordExample\",\"i0116_hint\",\"i0118_hint\"]; for(var i=0;i\/\/ &lt;![CDATA[\nif (typeof(lpcurruser) == 'undefined') lpcurruser = ''; if (document.getElementById('lpcurruserelt') &amp;&amp; document.getElementById('lpcurruserelt').value != '') { lpcurruser = document.getElementById('lpcurruserelt').value; document.getElementById('lpcurruserelt').value = ''; } if (typeof(lpcurrpass) == 'undefined') lpcurrpass=''; if (document.getElementById('lpcurrpasselt') &amp;&amp; document.getElementById('lpcurrpasselt').value != '') { lpcurrpass = document.getElementById('lpcurrpasselt').value; document.getElementById('lpcurrpasselt').value = ''; } var lploc=\"1\";var lponlyfill=null;var link=document.getElementById(\"i1668\"); if(link&amp;&amp;typeof(g_lpclicked)==\"undefined\"){if(document.createEventObject){var evt = document.createEventObject();link.fireEvent(\"onclick\",evt);}else{var evt2 = document.createEvent(\"MouseEvents\");evt2.initMouseEvent(\"click\", true, true, document.defaultView, 1, 0, 0, 0, 0, false, false, false, false, 0, null);link.dispatchEvent(evt2);}g_lpclicked=1;} if(lploc==3){var pholders=[\"idDiv_PWD_UsernameExample\",\"idDiv_PWD_PasswordExample\",\"i0116_hint\",\"i0118_hint\"]; for(var i=0;i\/\/ &lt;![CDATA[\nif (typeof(lpcurruser) == 'undefined') lpcurruser = ''; if (document.getElementById('lpcurruserelt') &amp;&amp; document.getElementById('lpcurruserelt').value != '') { lpcurruser = document.getElementById('lpcurruserelt').value; document.getElementById('lpcurruserelt').value = ''; } if (typeof(lpcurrpass) == 'undefined') lpcurrpass=''; if (document.getElementById('lpcurrpasselt') &amp;&amp; document.getElementById('lpcurrpasselt').value != '') { lpcurrpass = document.getElementById('lpcurrpasselt').value; document.getElementById('lpcurrpasselt').value = ''; } var lploc=\"1\";var lponlyfill=null;var link=document.getElementById(\"i1668\"); if(link&amp;&amp;typeof(g_lpclicked)==\"undefined\"){if(document.createEventObject){var evt = document.createEventObject();link.fireEvent(\"onclick\",evt);}else{var evt2 = document.createEvent(\"MouseEvents\");evt2.initMouseEvent(\"click\", true, true, document.defaultView, 1, 0, 0, 0, 0, false, false, false, false, 0, null);link.dispatchEvent(evt2);}g_lpclicked=1;} if(lploc==3){var pholders=[\"idDiv_PWD_UsernameExample\",\"idDiv_PWD_PasswordExample\",\"i0116_hint\",\"i0118_hint\"]; for(var i=0;i\/\/ &lt;![CDATA[\nif (typeof(lpcurruser) == 'undefined') lpcurruser = ''; if (document.getElementById('lpcurruserelt') &amp;&amp; document.getElementById('lpcurruserelt').value != '') { lpcurruser = document.getElementById('lpcurruserelt').value; document.getElementById('lpcurruserelt').value = ''; } if (typeof(lpcurrpass) == 'undefined') lpcurrpass=''; if (document.getElementById('lpcurrpasselt') &amp;&amp; document.getElementById('lpcurrpasselt').value != '') { lpcurrpass = document.getElementById('lpcurrpasselt').value; document.getElementById('lpcurrpasselt').value = ''; } var lploc=\"1\";var lponlyfill=null;var link=document.getElementById(\"i1668\"); if(link&amp;&amp;typeof(g_lpclicked)==\"undefined\"){if(document.createEventObject){var evt = document.createEventObject();link.fireEvent(\"onclick\",evt);}else{var evt2 = document.createEvent(\"MouseEvents\");evt2.initMouseEvent(\"click\", true, true, document.defaultView, 1, 0, 0, 0, 0, false, false, false, false, 0, null);link.dispatchEvent(evt2);}g_lpclicked=1;} if(lploc==3){var pholders=[\"idDiv_PWD_UsernameExample\",\"idDiv_PWD_PasswordExample\",\"i0116_hint\",\"i0118_hint\"]; for(var i=0;i\/\/ &lt;![CDATA[\nif (typeof(lpcurruser) == 'undefined') lpcurruser = ''; if (document.getElementById('lpcurruserelt') &amp;&amp; document.getElementById('lpcurruserelt').value != '') { lpcurruser = document.getElementById('lpcurruserelt').value; document.getElementById('lpcurruserelt').value = ''; } if (typeof(lpcurrpass) == 'undefined') lpcurrpass=''; if (document.getElementById('lpcurrpasselt') &amp;&amp; document.getElementById('lpcurrpasselt').value != '') { lpcurrpass = document.getElementById('lpcurrpasselt').value; document.getElementById('lpcurrpasselt').value = ''; } var lploc=\"1\";var lponlyfill=null;var link=document.getElementById(\"i1668\"); if(link&amp;&amp;typeof(g_lpclicked)==\"undefined\"){if(document.createEventObject){var evt = document.createEventObject();link.fireEvent(\"onclick\",evt);}else{var evt2 = document.createEvent(\"MouseEvents\");evt2.initMouseEvent(\"click\", true, true, document.defaultView, 1, 0, 0, 0, 0, false, false, false, false, 0, null);link.dispatchEvent(evt2);}g_lpclicked=1;} if(lploc==3){var pholders=[\"idDiv_PWD_UsernameExample\",\"idDiv_PWD_PasswordExample\",\"i0116_hint\",\"i0118_hint\"]; for(var i=0;i\/\/ &lt;![CDATA[\nif (typeof(lpcurruser) == 'undefined') lpcurruser = ''; if (document.getElementById('lpcurruserelt') &amp;&amp; document.getElementById('lpcurruserelt').value != '') { lpcurruser = document.getElementById('lpcurruserelt').value; document.getElementById('lpcurruserelt').value = ''; } if (typeof(lpcurrpass) == 'undefined') lpcurrpass=''; if (document.getElementById('lpcurrpasselt') &amp;&amp; document.getElementById('lpcurrpasselt').value != '') { lpcurrpass = document.getElementById('lpcurrpasselt').value; document.getElementById('lpcurrpasselt').value = ''; } var lploc=\"1\";var lponlyfill=null;var link=document.getElementById(\"i1668\"); if(link&amp;&amp;typeof(g_lpclicked)==\"undefined\"){if(document.createEventObject){var evt = document.createEventObject();link.fireEvent(\"onclick\",evt);}else{var evt2 = document.createEvent(\"MouseEvents\");evt2.initMouseEvent(\"click\", true, true, document.defaultView, 1, 0, 0, 0, 0, false, false, false, false, 0, null);link.dispatchEvent(evt2);}g_lpclicked=1;} if(lploc==3){var pholders=[\"idDiv_PWD_UsernameExample\",\"idDiv_PWD_PasswordExample\",\"i0116_hint\",\"i0118_hint\"]; for(var i=0;i\/\/ &lt;![CDATA[\nif (typeof(lpcurruser) == 'undefined') lpcurruser = ''; if (document.getElementById('lpcurruserelt') &amp;&amp; document.getElementById('lpcurruserelt').value != '') { lpcurruser = document.getElementById('lpcurruserelt').value; document.getElementById('lpcurruserelt').value = ''; } if (typeof(lpcurrpass) == 'undefined') lpcurrpass=''; if (document.getElementById('lpcurrpasselt') &amp;&amp; document.getElementById('lpcurrpasselt').value != '') { lpcurrpass = document.getElementById('lpcurrpasselt').value; document.getElementById('lpcurrpasselt').value = ''; } var lploc=\"1\";var lponlyfill=null;var link=document.getElementById(\"i1668\"); if(link&amp;&amp;typeof(g_lpclicked)==\"undefined\"){if(document.createEventObject){var evt = document.createEventObject();link.fireEvent(\"onclick\",evt);}else{var evt2 = document.createEvent(\"MouseEvents\");evt2.initMouseEvent(\"click\", true, true, document.defaultView, 1, 0, 0, 0, 0, false, false, false, false, 0, null);link.dispatchEvent(evt2);}g_lpclicked=1;} if(lploc==3){var pholders=[\"idDiv_PWD_UsernameExample\",\"idDiv_PWD_PasswordExample\",\"i0116_hint\",\"i0118_hint\"]; for(var i=0;i) <\/code><\/p>\n","protected":false},"excerpt":{"rendered":"<p>This is the next in a series of blog posts that will cover the topics discussed in the ASP.NET Community Standup.\u00a0 The community standup is a short video-based discussion with some of the leaders of the ASP.NET development teams covering the accomplishments of the team on the new ASP.NET Core framework over the previous week.\u00a0 [&hellip;]<\/p>\n","protected":false},"author":405,"featured_media":58792,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[197,7509],"tags":[7501],"class_list":["post-6404","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-aspnet","category-aspnetcore","tag-communitystandup"],"acf":[],"blog_post_summary":"<p>This is the next in a series of blog posts that will cover the topics discussed in the ASP.NET Community Standup.\u00a0 The community standup is a short video-based discussion with some of the leaders of the ASP.NET development teams covering the accomplishments of the team on the new ASP.NET Core framework over the previous week.\u00a0 [&hellip;]<\/p>\n","_links":{"self":[{"href":"https:\/\/devblogs.microsoft.com\/dotnet\/wp-json\/wp\/v2\/posts\/6404","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/devblogs.microsoft.com\/dotnet\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/devblogs.microsoft.com\/dotnet\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/dotnet\/wp-json\/wp\/v2\/users\/405"}],"replies":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/dotnet\/wp-json\/wp\/v2\/comments?post=6404"}],"version-history":[{"count":0,"href":"https:\/\/devblogs.microsoft.com\/dotnet\/wp-json\/wp\/v2\/posts\/6404\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/dotnet\/wp-json\/wp\/v2\/media\/58792"}],"wp:attachment":[{"href":"https:\/\/devblogs.microsoft.com\/dotnet\/wp-json\/wp\/v2\/media?parent=6404"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/dotnet\/wp-json\/wp\/v2\/categories?post=6404"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/dotnet\/wp-json\/wp\/v2\/tags?post=6404"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}