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 Core 1.0
Info and Downloads: https://www.microsoft.com/net
ASP.NET Core 1.0
Info and Downloads: http://www.asp.net/
.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
13
https://blogs.msdn.microsoft.com/webdev/2016/06/27/announcing-asp-net-core-1-0/
Announcing ASP.NET Core 1.0
Going beyond 1.0…
https://github.com/aspnet/Home/wiki/Roadmap
.NET Standard Library + Tooling
Source: http://www.hanselman.com/blog/AnUpdateOnASPNETCore10RC2.aspx
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

What's hot (20)

PPTX
Getting Started with ASP.net Core 1.0
joescars
 
PPTX
Capture the Cloud with Azure
Shahed Chowdhuri
 
PPTX
ASP.NET Core 2.1: The Future of Web Apps
Shahed Chowdhuri
 
PDF
O365Con18 - SharePoint Framework for Administrators - Waldek Mastykarz
NCCOMMS
 
PPTX
ASP.NET 5 Overview - Post Build 2015
Shahed Chowdhuri
 
PPTX
Building HTTP APIs with ASP.NET Core
Filip W
 
PPTX
ASP.NET 5 Overview
Shahed Chowdhuri
 
PPTX
SharePoint Development with the SharePoint Framework
JoAnna Cheshire
 
PPTX
Selenium Topic 2 IDE
ITProfessional Academy
 
PPTX
Que hay de nuevo en Visual Studio 2013 y ASP.NET 5.1
Rodolfo Finochietti
 
PDF
O365Con18 - Implementing Automated UI Testing for SharePoint Solutions - Elio...
NCCOMMS
 
PDF
O365Con18 - Working with PowerShell, VS Code and GitHub - Thomas Vochten
NCCOMMS
 
PPTX
Debugging your Way through .NET with Visual Studio 2015
Ido Flatow
 
PPTX
Introduction to ASP.NET 5
mbaric
 
PPTX
How to Win #BestMicrosoftHack with Azure
Shahed Chowdhuri
 
PPTX
SharePoint Framework
Vitaly Zhukov
 
PPTX
Connecticut Salesforce Developer Group - Jan 2017
Jitendra Zaa
 
PPTX
ASP.NET Core
Maurice De Beijer [MVP]
 
PDF
Introduction to azure web applications for office and share point developers
JoAnna Cheshire
 
PPTX
Microsoft ASP.NET 5 - The new kid on the block
Christos Matskas
 
Getting Started with ASP.net Core 1.0
joescars
 
Capture the Cloud with Azure
Shahed Chowdhuri
 
ASP.NET Core 2.1: The Future of Web Apps
Shahed Chowdhuri
 
O365Con18 - SharePoint Framework for Administrators - Waldek Mastykarz
NCCOMMS
 
ASP.NET 5 Overview - Post Build 2015
Shahed Chowdhuri
 
Building HTTP APIs with ASP.NET Core
Filip W
 
ASP.NET 5 Overview
Shahed Chowdhuri
 
SharePoint Development with the SharePoint Framework
JoAnna Cheshire
 
Selenium Topic 2 IDE
ITProfessional Academy
 
Que hay de nuevo en Visual Studio 2013 y ASP.NET 5.1
Rodolfo Finochietti
 
O365Con18 - Implementing Automated UI Testing for SharePoint Solutions - Elio...
NCCOMMS
 
O365Con18 - Working with PowerShell, VS Code and GitHub - Thomas Vochten
NCCOMMS
 
Debugging your Way through .NET with Visual Studio 2015
Ido Flatow
 
Introduction to ASP.NET 5
mbaric
 
How to Win #BestMicrosoftHack with Azure
Shahed Chowdhuri
 
SharePoint Framework
Vitaly Zhukov
 
Connecticut Salesforce Developer Group - Jan 2017
Jitendra Zaa
 
Introduction to azure web applications for office and share point developers
JoAnna Cheshire
 
Microsoft ASP.NET 5 - The new kid on the block
Christos Matskas
 

Viewers also liked (20)

PPTX
Intro to Bot Framework v3
Shahed Chowdhuri
 
PPTX
Azure: PaaS or IaaS
Shahed Chowdhuri
 
PPTX
Intro to HoloLens Development
Shahed Chowdhuri
 
PPTX
Xbox One Dev Mode
Shahed Chowdhuri
 
PPTX
Intro to Xamarin
Shahed Chowdhuri
 
PPTX
Intro to Bot Framework
Shahed Chowdhuri
 
PPTX
Unity 5 Jumpstart: Kickoff
Shahed Chowdhuri
 
PPTX
Xbox One Dev Mode
Shahed Chowdhuri
 
PDF
24 Resharper Tricks Every .Net Developer Should Know
Lee Richardson
 
PPTX
ASP.NET Core 1.0 Overview
Shahed Chowdhuri
 
PPTX
Rollerball: 1 of 2
Shahed Chowdhuri
 
PPTX
Rollerball: 2 of 2
Shahed Chowdhuri
 
PPTX
ASP.NET Core 1.0 Overview: Post-RC2
Shahed Chowdhuri
 
PPTX
Capture the Cloud with Azure
Shahed Chowdhuri
 
PPTX
BizSpark & Azure for Startups
Shahed Chowdhuri
 
PPTX
Universal Apps for Windows 10
Shahed Chowdhuri
 
PPTX
Deeper into Windows 10 Development
Shahed Chowdhuri
 
PPTX
ASP.NET 5 & Unit Testing
Shahed Chowdhuri
 
PPTX
Intro to HoloLens Development + Windows Mixed Reality
Shahed Chowdhuri
 
PPTX
Getting Started with Microsoft Bot Framework
Sarah Sexton
 
Intro to Bot Framework v3
Shahed Chowdhuri
 
Azure: PaaS or IaaS
Shahed Chowdhuri
 
Intro to HoloLens Development
Shahed Chowdhuri
 
Xbox One Dev Mode
Shahed Chowdhuri
 
Intro to Xamarin
Shahed Chowdhuri
 
Intro to Bot Framework
Shahed Chowdhuri
 
Unity 5 Jumpstart: Kickoff
Shahed Chowdhuri
 
Xbox One Dev Mode
Shahed Chowdhuri
 
24 Resharper Tricks Every .Net Developer Should Know
Lee Richardson
 
ASP.NET Core 1.0 Overview
Shahed Chowdhuri
 
Rollerball: 1 of 2
Shahed Chowdhuri
 
Rollerball: 2 of 2
Shahed Chowdhuri
 
ASP.NET Core 1.0 Overview: Post-RC2
Shahed Chowdhuri
 
Capture the Cloud with Azure
Shahed Chowdhuri
 
BizSpark & Azure for Startups
Shahed Chowdhuri
 
Universal Apps for Windows 10
Shahed Chowdhuri
 
Deeper into Windows 10 Development
Shahed Chowdhuri
 
ASP.NET 5 & Unit Testing
Shahed Chowdhuri
 
Intro to HoloLens Development + Windows Mixed Reality
Shahed Chowdhuri
 
Getting Started with Microsoft Bot Framework
Sarah Sexton
 
Ad

Similar to ASP.NET Core 1.0 Overview (20)

PPTX
ASP.NET Core: The best of the new bits
Ken Cenerelli
 
PPTX
From .NET Core 3, all the rest will be legacy
Rick van den Bosch
 
PDF
ASP.NET vs ASP.NET Core
Öğr. Gör. Erkan HÜRNALI
 
PDF
Pottnet Meetup Essen - ASP.Net Core
Malte Lantin
 
PDF
Pottnet MeetUp Essen - ASP.Net Core
Malte Lantin
 
PDF
Why Enterprises are Using ASP.NET Core?
Marie Weaver
 
PPTX
Full session asp net mvc vs aspnet core
fizmhd
 
PPTX
ASP.NET Core 2.1: The Future of Web Apps
Shahed Chowdhuri
 
PDF
Asp.net core tutorial
HarikaReddy115
 
PPTX
Moving forward with ASP.NET Core
Enea Gabriel
 
PPTX
ASP.NET Core 2.0: The Future of Web Apps
Shahed Chowdhuri
 
PDF
Getting Started with ASP.NET Core 1.0 (formerly ASP.NET 5)
Arrow Consulting & Design
 
PPTX
.Net Core 1.0 vs .NET Framework
Wyn B. Van Devanter
 
PDF
Asp. net core 3.0 build modern web and cloud applications (top 13 features +...
Katy Slemon
 
PPTX
ASP.NET Core 2.1: The Future of Web Apps
Shahed Chowdhuri
 
PPTX
Explore asp.net core 3.0 features
iFour Technolab Pvt. Ltd.
 
PPTX
Asp dotnet net core
JaganathRao
 
PPTX
Les nouveautés ASP.NET 5 avec Visual Studio 2015
MSDEVMTL
 
PPTX
Unboxing ASP.NET Core
Kevin Leung
 
PPTX
Introducing ASP.NET vNext - A tour of the new ASP.NET platform
Jeffrey T. Fritz
 
ASP.NET Core: The best of the new bits
Ken Cenerelli
 
From .NET Core 3, all the rest will be legacy
Rick van den Bosch
 
ASP.NET vs ASP.NET Core
Öğr. Gör. Erkan HÜRNALI
 
Pottnet Meetup Essen - ASP.Net Core
Malte Lantin
 
Pottnet MeetUp Essen - ASP.Net Core
Malte Lantin
 
Why Enterprises are Using ASP.NET Core?
Marie Weaver
 
Full session asp net mvc vs aspnet core
fizmhd
 
ASP.NET Core 2.1: The Future of Web Apps
Shahed Chowdhuri
 
Asp.net core tutorial
HarikaReddy115
 
Moving forward with ASP.NET Core
Enea Gabriel
 
ASP.NET Core 2.0: The Future of Web Apps
Shahed Chowdhuri
 
Getting Started with ASP.NET Core 1.0 (formerly ASP.NET 5)
Arrow Consulting & Design
 
.Net Core 1.0 vs .NET Framework
Wyn B. Van Devanter
 
Asp. net core 3.0 build modern web and cloud applications (top 13 features +...
Katy Slemon
 
ASP.NET Core 2.1: The Future of Web Apps
Shahed Chowdhuri
 
Explore asp.net core 3.0 features
iFour Technolab Pvt. Ltd.
 
Asp dotnet net core
JaganathRao
 
Les nouveautés ASP.NET 5 avec Visual Studio 2015
MSDEVMTL
 
Unboxing ASP.NET Core
Kevin Leung
 
Introducing ASP.NET vNext - A tour of the new ASP.NET platform
Jeffrey T. Fritz
 
Ad

More from Shahed Chowdhuri (11)

PPTX
Cloud-Backed Mixed Reality: HoloLens & Azure Cognitive Services
Shahed Chowdhuri
 
PPTX
Cloud-Backed Mixed Reality with HoloLens & Azure Cognitive Services
Shahed Chowdhuri
 
PPTX
Microsoft Cognitive Services
Shahed Chowdhuri
 
PPTX
Intro to Bot Framework v3 with DB
Shahed Chowdhuri
 
PPTX
Game On with Windows & Xbox One @ .NET Conf UY
Shahed Chowdhuri
 
PPTX
Game On with Windows & Xbox One!
Shahed Chowdhuri
 
PPTX
Going Serverless with Azure Functions
Shahed Chowdhuri
 
PPTX
Azure for Hackathons
Shahed Chowdhuri
 
PPTX
Intro to Xamarin: Cross-Platform Mobile Application Development
Shahed Chowdhuri
 
PPTX
Xbox One Dev Mode
Shahed Chowdhuri
 
PPTX
What's New at Microsoft?
Shahed Chowdhuri
 
Cloud-Backed Mixed Reality: HoloLens & Azure Cognitive Services
Shahed Chowdhuri
 
Cloud-Backed Mixed Reality with HoloLens & Azure Cognitive Services
Shahed Chowdhuri
 
Microsoft Cognitive Services
Shahed Chowdhuri
 
Intro to Bot Framework v3 with DB
Shahed Chowdhuri
 
Game On with Windows & Xbox One @ .NET Conf UY
Shahed Chowdhuri
 
Game On with Windows & Xbox One!
Shahed Chowdhuri
 
Going Serverless with Azure Functions
Shahed Chowdhuri
 
Azure for Hackathons
Shahed Chowdhuri
 
Intro to Xamarin: Cross-Platform Mobile Application Development
Shahed Chowdhuri
 
Xbox One Dev Mode
Shahed Chowdhuri
 
What's New at Microsoft?
Shahed Chowdhuri
 

Recently uploaded (20)

PPTX
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PDF
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PDF
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
PDF
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
PDF
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
PDF
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
PDF
CIFDAQ Weekly Market Wrap for 11th July 2025
CIFDAQ
 
PDF
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
PDF
July Patch Tuesday
Ivanti
 
PDF
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
PDF
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
PDF
What Makes Contify’s News API Stand Out: Key Features at a Glance
Contify
 
PDF
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
CIFDAQ Weekly Market Wrap for 11th July 2025
CIFDAQ
 
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
July Patch Tuesday
Ivanti
 
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
What Makes Contify’s News API Stand Out: Key Features at a Glance
Contify
 
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 

ASP.NET Core 1.0 Overview

Editor's Notes