SlideShare a Scribd company logo
ASP.NET Core* 1.0
Shahed Chowdhuri
Sr. Technical Evangelist @ Microsoft
@shahedC
WakeUpAndCode.com
The Future of Web Apps
* aka ASP.NET 5 before RC1
Agenda
Introduction
> .NET (Framework & Core)
> ASP.NET Core
> Visual Studio
Q&A
Introduction
Sources
asp.net/vNext
Scott Guthrie’s Blog
MSDN Blogs, Feb 2015 Update
dotnetConf 2015 on MSDN Ch9
BuildWindows.com
docs.asp.net
Newer Blog Posts in 2016
RC2: http://www.hanselman.com/blog/AnUpdateOnASPNETCore10RC2.aspx
Community Standup Notes: https://blogs.msdn.microsoft.com/webdev/
Moving to RC2
RC1 to .NET Core: https://docs.asp.net/en/latest/migration/rc1-to-rc2.html
Announcing RC2: https://blogs.msdn.microsoft.com/webdev/2016/05/16/announcing-asp-net-core-rc2/
.NET Across Windows/Web Platforms
http://blogs.msdn.com/b/dotnet/archive/2014/12/04/introducing-net-core.aspx
ASP.NET
Web API
Active
Server
Pages
(Classic
ASP)
ASP.NET
(Web
Forms)
ASP.NET
MVC
1/2/3/4/5
ASP.NET
Web Pages
ASP.NET
MVC 6
Unified
MVC, Web
API and
Web
Pages
ASP.NET
Web API
Active
Server
Pages
(Classic
ASP)
ASP.NET
(Web
Forms)
ASP.NET
MVC
1/2/3/4/5
ASP.NET
Web Pages
ASP.NET
MVC 6
Core MVC
Unified
MVC, Web
API and
Web
Pages
Evolution of ASP and ASP .NET
5
5
.NET Core 5
Names & Version Numbers
ASP.NET Roadmap
https://github.com/aspnet/Home/wiki/Roadmap
.NET Standard Library + Tooling
Source: http://www.hanselman.com/blog/AnUpdateOnASPNETCore10RC2.aspx
12
https://blogs.msdn.microsoft.com/visualstudio/2016/05/16/announcing-updated-web-development-tools-
for-asp-net-core-rc2/
Web Dev Tools for ASP .NET Core RC2
Agenda
Introduction
> .NET (Framework & Core)
> ASP.NET Core
> Visual Studio
Q&A
.NET Framework
& .NET Core
.NET in 2015: High-Level Overview
ASP.NET Core High-Level Overview
Compilation Process
What About .NET Framework 4.6?
Core is
ASP .NET Core
ASP.NET Core 1.0 Features
ASP.NET Core Summary
Relevant XKCD Comic
https://xkcd.com/303/
ASP.NET Core Features in Detail
• .NET Core or full .NET Framework
• .NET Core is cross-platform
• Deploy Core runtime with app
• No need for unused features
ASP.NET Core Features in Detail
Unified:
• MVC
• Web API
• Web Pages
ASP.NET Core Features in Detail
• HTML Helpers in your views!
ASP.NET Core Features in Detail
1. Edit code
2. Save changes
3. Refresh browser
4. See changes!
Compiled language with benefits of
interpreted language!
ASP.NET Core Features in Detail
• Bower  client-side pkg mgr
• e.g. JS, CSS
• Grunt & Gulp  task runners
• compile LESS/CoffeeScript,
Typescipt
• run JSLint
• minify JS files
ASP.NET Core Features in Detail
• Manage dependencies with NuGet
packages
• Edit project.json file (?)
• Enjoy IntelliSense!
ASP.NET Core Features in Detail
• Configuration in code
• Edit Startup.cs file
• No need to use Web.config
• Use JSON, XML, env vars
ASP.NET Core Features in Detail
• minimalistic DI container
• replace with others
• Autofac, Ninject, etc
• use [FromServices] attribute
ASP.NET Core Features in Detail
New HTTP pipeline
• modular
• add components as
needed
• no longer dependent
on System.Web
ASP.NET Core Features in Detail
GitHub!
ASP.NET Core Features in Detail
Post-RC2
Tooling Changes
ASP.NET Core Features in Detail
ASP.NET Core Preview Templates
• Empty
• Starter Web
• Web API
ASP.NET Core Features in Detail
• Open ID Connect
• OAuth2
• Template auth logic based on
OWIN and Open ID Connect (not
WIF)
ASP.NET Core Features in Detail
More granular control (than
HttpClientHandler) over individual
aspects of HTTP
• redirects, auth, cookies, etc
ASP.NET Core Features in Detail
ASP.NET Core Features in Detail
How about Entity Framework?
DB
ORM
Entities
in Code
Core
)
Visual Studio 2015
File  New Project  Web
• Web App (4.x)
• Core Web App (.NET Core)
• Core Web App (.NET framework)
Select a Template
ASP. NET Core Templates
• Empty
• Web API
• Web Application
Startup.cs Configuration
project.json
Right-click  (Project) Properties
Choose Profile While Debugging
DEMO
Visual Studio Code
Download https://code.visualstudio.com
.NET Version Manager (DNVM)
• .NET SDK Version
Manager
• Formerly KVM
• Get list of DNXs
(aka KRE)
GitHub: https://github.com/aspnet/dnvm
Tooling Changes and NETStandard
References
• ASP.NET vNext: http://asp.net/vnext
• Intro: https://weblogs.asp.net/scottgu/introducing-asp-net-5
• Feb 2015 Updates: http://blogs.msdn.com/b/webdev/archive/2015/02/23/aspnet-5-updates-
for-feb-2015.aspx
• dotnetConf March 2015: https://channel9.msdn.com/Events/dotnetConf/2015
• Build 2015: https://channel9.msdn.com/Events/Build/2015
• Understanding .NET 2015:
http://blogs.msdn.com/b/bethmassi/archive/2015/02/25/understanding-net-2015.aspx
• Grunt & Bower: http://www.asp.net/vnext/overview/aspnet-vnext/grunt-and-bower-in-visual-
studio-2015
• Tutorial: http://www.asp.net/vnext/overview/aspnet-vnext/vc
• ASP.NET Community Standup Notes: https://blogs.msdn.microsoft.com/webdev/
• Update on ASP.NET RC2: http://www.hanselman.com/blog/AnUpdateOnASPNETCore10RC2.aspx
• Additional Tutorials: See Starter Web Project Template
Other Resources
• Roadmap: https://github.com/aspnet/Home/wiki/Roadmap
• ASP.NET Identity: http://www.asp.net/identity/overview/getting-
started/introduction-to-aspnet-identity
• KRE, KVM, KPM: http://gunnarpeipman.com/2014/10/asp-net-5-what-
are-kre-kvm-kpm/
• Grunt, JS Task Runner: http://gruntjs.com/
• Gulp, Workflow Automation: http://gulpjs.com/
• Bower, Package Manager: http://bower.io/
• npm, Node Package Manager: https://www.npmjs.com/
Agenda
Introduction
> .NET (Framework & Core)
> ASP.NET Core
> Visual Studio
Q&A
Q & A
Agenda
Introduction
> .NET (Framework & Core)
> ASP.NET Core
> Visual Studio
Q&A
Email: shchowd@microsoft.com  Twitter: @shahedC

More Related Content

PPTX
Capture the Cloud with Azure
PPTX
ASP.NET Core 1.0 Overview: Pre-RC2
PPTX
Intro to Xamarin
PPTX
Deploy Your Web Site or Web App on Azure
PPTX
Intro to Xamarin: Cross-Platform Mobile Application Development
PPTX
Xbox One Dev Mode
PPTX
Intro to HoloLens Development
PPTX
Xbox One Dev Mode
Capture the Cloud with Azure
ASP.NET Core 1.0 Overview: Pre-RC2
Intro to Xamarin
Deploy Your Web Site or Web App on Azure
Intro to Xamarin: Cross-Platform Mobile Application Development
Xbox One Dev Mode
Intro to HoloLens Development
Xbox One Dev Mode

What's hot (20)

PPTX
BizSpark & Azure for Startups
PPTX
Universal Apps for Windows 10
PPTX
Capture the Cloud with Azure
PPTX
Intro to Bot Framework v3 with DB
PPTX
ASP.NET Core 1.0 Overview
PPTX
Azure for Hackathons
PPTX
ASP.NET Core 2.0: The Future of Web Apps
PPTX
Cross-Platform Apps/Games with Azure
PPTX
Going Serverless with Azure Functions
PPTX
What's New at Microsoft?
PPTX
Building Cross Platform Mobile Apps
PPTX
Typescript 102 angular and type script
PPTX
Deeper into Windows 10 Development
PPTX
ASP.NET Core Unit Testing
PPTX
SharePoint Framework -The future of SharePoint/ Office 365 developer ecosystem.
PPTX
Introduction to SharePoint Framework (SPFx)
PDF
O365Con18 - SharePoint Framework for Administrators - Waldek Mastykarz
PDF
Salesforce lightning development 101
PPTX
Community Tour Bologna
PPTX
Application Lifecycle Management for Office 365 development
BizSpark & Azure for Startups
Universal Apps for Windows 10
Capture the Cloud with Azure
Intro to Bot Framework v3 with DB
ASP.NET Core 1.0 Overview
Azure for Hackathons
ASP.NET Core 2.0: The Future of Web Apps
Cross-Platform Apps/Games with Azure
Going Serverless with Azure Functions
What's New at Microsoft?
Building Cross Platform Mobile Apps
Typescript 102 angular and type script
Deeper into Windows 10 Development
ASP.NET Core Unit Testing
SharePoint Framework -The future of SharePoint/ Office 365 developer ecosystem.
Introduction to SharePoint Framework (SPFx)
O365Con18 - SharePoint Framework for Administrators - Waldek Mastykarz
Salesforce lightning development 101
Community Tour Bologna
Application Lifecycle Management for Office 365 development
Ad

Viewers also liked (18)

PPTX
ASP.NET Core MVC + Web API with Overview (Post RC2)
PPTX
ASP.NET Core 1.0 Overview
PPTX
ASP.NET Core MVC + Web API with Overview
PPTX
Getting Started with ASP.net Core 1.0
PPTX
Intro to Bot Framework
PPTX
Xbox One Dev Mode
PPTX
ASP.NET Core: The best of the new bits
PPTX
ASP.NET Core MVC + Web API with Overview
PPTX
Azure: PaaS or IaaS
PPTX
.Net Core
PPTX
Intro to Bot Framework v3
PPT
Ais powerpoint (1)
PPTX
Building Real Time Applications with ASP.NET SignalR 2.0 by Rachel Appel
PPT
PPTX
asp.net mvc-course-introduction
PPTX
ASP.NET vNext Beta 3
PDF
Introduction to ASP.NET Core
PPTX
ASP .NET Core MVC
ASP.NET Core MVC + Web API with Overview (Post RC2)
ASP.NET Core 1.0 Overview
ASP.NET Core MVC + Web API with Overview
Getting Started with ASP.net Core 1.0
Intro to Bot Framework
Xbox One Dev Mode
ASP.NET Core: The best of the new bits
ASP.NET Core MVC + Web API with Overview
Azure: PaaS or IaaS
.Net Core
Intro to Bot Framework v3
Ais powerpoint (1)
Building Real Time Applications with ASP.NET SignalR 2.0 by Rachel Appel
asp.net mvc-course-introduction
ASP.NET vNext Beta 3
Introduction to ASP.NET Core
ASP .NET Core MVC
Ad

Similar to ASP.NET Core 1.0 Overview: Post-RC2 (20)

PPTX
ASP.NET Core 2.1: The Future of Web Apps
PPTX
ASP.NET Core 2.1: The Future of Web Apps
PPTX
ASP.NET Core 2.1: The Future of Web Apps
PDF
Getting Started with ASP.NET Core 1.0 (formerly ASP.NET 5)
PPTX
The next step from Microsoft - Vnext (Srdjan Poznic)
PDF
.NET framework vs .net core 3.1 commons & differences
PDF
Net coreandsimplcommerce
PPTX
ASP.NET Core 1.0
PPTX
Migration from ASP.NET MVC to ASP.NET Core
PPTX
.NET Core Today and Tomorrow
PPTX
ASP.NET 5 Overview - Post Build 2015
PPTX
ASP.NET 5 Overview: Post RTM
PPTX
ASP.NET 5 Overview for Apex Systems
PPTX
.NET Fest 2017. Андрей Антиликаторов. Проектирование и разработка приложений ...
PPTX
The future of ASP.NET / CodeCamp/Iasi 25 Oct 2014
PPTX
Unboxing ASP.NET Core
PPTX
Creating Dynamic Web Application Using ASP.Net 3 5_MVP Alezandra Buencamino N...
PPT
New Features Of Microsoft Visual Studio 2008 And .Net Framework 3.5 To Comsof...
PPTX
Usability AJAX and other ASP.NET Features
ASP.NET Core 2.1: The Future of Web Apps
ASP.NET Core 2.1: The Future of Web Apps
ASP.NET Core 2.1: The Future of Web Apps
Getting Started with ASP.NET Core 1.0 (formerly ASP.NET 5)
The next step from Microsoft - Vnext (Srdjan Poznic)
.NET framework vs .net core 3.1 commons & differences
Net coreandsimplcommerce
ASP.NET Core 1.0
Migration from ASP.NET MVC to ASP.NET Core
.NET Core Today and Tomorrow
ASP.NET 5 Overview - Post Build 2015
ASP.NET 5 Overview: Post RTM
ASP.NET 5 Overview for Apex Systems
.NET Fest 2017. Андрей Антиликаторов. Проектирование и разработка приложений ...
The future of ASP.NET / CodeCamp/Iasi 25 Oct 2014
Unboxing ASP.NET Core
Creating Dynamic Web Application Using ASP.Net 3 5_MVP Alezandra Buencamino N...
New Features Of Microsoft Visual Studio 2008 And .Net Framework 3.5 To Comsof...
Usability AJAX and other ASP.NET Features

More from Shahed Chowdhuri (6)

PPTX
Cloud-Backed Mixed Reality: HoloLens & Azure Cognitive Services
PPTX
Cloud-Backed Mixed Reality with HoloLens & Azure Cognitive Services
PPTX
Microsoft Cognitive Services
PPTX
Game On with Windows & Xbox One @ .NET Conf UY
PPTX
Game On with Windows & Xbox One!
PPTX
Intro to HoloLens Development + Windows Mixed Reality
Cloud-Backed Mixed Reality: HoloLens & Azure Cognitive Services
Cloud-Backed Mixed Reality with HoloLens & Azure Cognitive Services
Microsoft Cognitive Services
Game On with Windows & Xbox One @ .NET Conf UY
Game On with Windows & Xbox One!
Intro to HoloLens Development + Windows Mixed Reality

Recently uploaded (20)

PDF
madgavkar20181017ppt McKinsey Presentation.pdf
PDF
solutions_manual_-_materials___processing_in_manufacturing__demargo_.pdf
PDF
CIFDAQ's Market Wrap: Ethereum Leads, Bitcoin Lags, Institutions Shift
PDF
KodekX | Application Modernization Development
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PPTX
Belt and Road Supply Chain Finance Blockchain Solution
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
Event Presentation Google Cloud Next Extended 2025
PDF
Google’s NotebookLM Unveils Video Overviews
PDF
Sensors and Actuators in IoT Systems using pdf
PPTX
How to Build Crypto Derivative Exchanges from Scratch.pptx
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
REPORT: Heating appliances market in Poland 2024
PDF
Smarter Business Operations Powered by IoT Remote Monitoring
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
PDF
Chapter 2 Digital Image Fundamentals.pdf
PDF
ai-archetype-understanding-the-personality-of-agentic-ai.pdf
madgavkar20181017ppt McKinsey Presentation.pdf
solutions_manual_-_materials___processing_in_manufacturing__demargo_.pdf
CIFDAQ's Market Wrap: Ethereum Leads, Bitcoin Lags, Institutions Shift
KodekX | Application Modernization Development
Understanding_Digital_Forensics_Presentation.pptx
Belt and Road Supply Chain Finance Blockchain Solution
NewMind AI Weekly Chronicles - August'25 Week I
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
CIFDAQ's Market Insight: SEC Turns Pro Crypto
Event Presentation Google Cloud Next Extended 2025
Google’s NotebookLM Unveils Video Overviews
Sensors and Actuators in IoT Systems using pdf
How to Build Crypto Derivative Exchanges from Scratch.pptx
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
REPORT: Heating appliances market in Poland 2024
Smarter Business Operations Powered by IoT Remote Monitoring
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Chapter 2 Digital Image Fundamentals.pdf
ai-archetype-understanding-the-personality-of-agentic-ai.pdf

ASP.NET Core 1.0 Overview: Post-RC2

Editor's Notes