Windows Windows Phone Azure … and WakeUpAndCode.com.

Slides:



Advertisements
Similar presentations
Develop your database with Visual Studio
Advertisements

Attie Naude 14 May 2013 Windows Azure Mobile Services.
Steve Milligan – Intergen Neil Macrae – New Zealand Police
Xbox Indie Scene 2014 Mike Froggatt Xbox Advanced Technology Group AMD AND MICROSOFT GAME DEVELOPER DAY - June , STOCKHOLM.
What Is Azure ! Thierry Gasser Technical Solution Professional (TSP)
Microsoft Dynamics AX Technical Conference 2013
Windows 8 Windows Phone 8 Web Mobile … and WakeUpAndCode.com.
Part 2: Manage app lifecycle and state (Windows Store apps using C#/VB and XAML) us/library/windows/apps/hh aspx
Presentation 11: SOAP on small devices. Ingeniørhøjskolen i Århus Slide 2 af 14 Outline Which small devices? What are the limitations and what kind of.
Modern Application Lifecycle Visual Studio Online journey, capabilities and DevOps Scenarios Good to know.
CROSS PLATFORM DEVELOPMENT WITH MVVM CROSS By Ken Tucker.
3 TIME IT CAPACITY Actual Load Allocated IT-capacities Too Much Power Not Enough Power Load Forecast.
Windows Windows Phone Azure … and WakeUpAndCode.com.
IoT HoloLens Surface Hub Windows Desktop Windows Mobile Xbox ONE CORE OS ONE APP PLATFORM ONE STORE Windows 10.
Windows 8.1 Windows Phone 8.1 … and WakeUpAndCode.com.
Windows Windows Phone Azure … and WakeUpAndCode.com.
The Cloud for Modern WakeUpAndCode.com.
INTRODUCTION TO CLOUD COMPUTING Cs 595 Lecture 5 2/11/2015.
9 TIME IT CAPACITY Actual Load Allocated IT-capacities Too Much Power Not Enough Power Load Forecast.
Cross Platform Mobile Backend with Mobile Services James
What is Cloud Computing? Cloud computing is the delivery of computing capabilities as a service, making access to IT resources like compute power, networking.
Randy Pagels, Developer Technology Specialist Microsoft Corporation Dev & Test in the Cloud.
Lecture 8 – Platform as a Service. Introduction We have discussed the SPI model of Cloud Computing – IaaS – PaaS – SaaS.
Microsoft Azure Introduction ISYS 512. Microsoft Azure Microsoft Azure is a cloud.
Migrating Business Apps to Windows Azure Marc Müller Principal Consultant, 4tecture GmbH
Available via NuGet independently, major revisions infrequent and with minimal breaking changes, sole dependency for each MAML library. Contains HTTP,
Windows Windows Phone Azure … and WakeUpAndCode.com.
IFactr Enterprise Application Modernization. Visual Studio Industry Partner iFactr NEXT STEPS Contact us at: WebsiteiFactr.com BlogiFactr.com/blog.
Windows Windows Phone Azure … and WakeUpAndCode.com.
Developing Enterprise Mobile Apps with Xamarin Loren Horsager CEO, Mobile Composer.
Windows Azure: Microsoft’s Cloud Platform By Shahed Chowdhuri.
A Digital and Technology Getting Started with Microsoft Azure API Management Ed Jones,
Easy for users to get & stay current Unified core and app platform Windows Phone 7.5 Windows Phone 8 Windows Phone 8.1 Windows 8 Xbox One Windows on Devices.
Understanding Xamarin Development Matt
Lagash Systems Mariano Sánchez – Software
IoT HoloLens Surface Hub Windows Desktop Windows Mobile Xbox ONE CORE OS ONE APP PLATFORM ONE STORE Windows 10.
How* to Win the #BestMicrosoftHack Shahed Chowdhuri Sr. Technical WakeUpAndCode.com *Hint: Use the Cloud.
Windows Windows Phone Azure … and WakeUpAndCode.com.
3 TIME IT CAPACITY Actual Load Allocated IT-capacities Too Much Power Not Enough Power Load Forecast.
Windows iOS Android … and WakeUpAndCode.com.
CLOUD COMPUTING. What is cloud computing ??? What is cloud computing ??? Cloud computing is a general term for anything that involves delivering hosted.
Windows 8.1 Windows Phone 8.1 Windows 10 … and WakeUpAndCode.com.
#SPSMX I want to use SharePoint in the Cloud Should I use Office 365 or Azure? Luis Du Solier SharePoint Premier Field Engineer Microsoft.
The Windows 10 App platform: an introduction to the UWP Andy Wigley b:
Sage Franch | Technical Evangelist Susan Ibach | Technical Evangelist.
TEARING THE DOWN ing Jim Wooley Jim Wooley
Your Host & Speaker Shahed Chowdhuri Sr. Technical Microsoft Technology Areas Enterprise Web/Software Development Game Development Mobile.
Cloud Computing Cosa, come e perché? Giancarlo Lelli Microsoft MVP – Avanade
Windows App Studio Windows App Studio is the tool that makes it fast and easy to build Windows 10 apps. It’s accessible from any device with a browser.
Clouding with Microsoft Azure
Mobile Application Solution
Windows 8 + Windows Phone + cloud
Xamarin Studio Xamarin Curriculum for Xamarin Studio
Developing Windows 10 Games with Construct 2
Azure Architect – IaaS or PaaS?
The Universal Windows Platform
6/2/2018 4:08 AM BRK3327 Ten things you didn't know about building .NET UWP apps in Visual Studio 2017 Daniel Jacobson Program Manager – Visual Studio.
Introduction to .NET Core
Platform as a Service.
The power of common identity across any cloud
Mobile Application Solution
PaaS - Development Stefan Geiger Gerry
Windows 10 Preview Andy & Jerry
Hosted Web Apps with Windows App Studio
What?   Accounts Accounts subscription Azure Pass Code Azure Pass Code.
Microsoft Connect /1/2018 2:36 AM
Tech for Startups By Shahed Chowdhuri Sr. Technical Evangelist
Office 365 Development.
Azure Mobile Services in the Cloud
ASP.NET Core 2.0 The Future of Web Apps Shahed Chowdhuri
Presentation transcript:

Windows Windows Phone Azure … and WakeUpAndCode.com

Intro: Cloud + Universal Apps > Creating a Mobile Service > Consuming the Service > Publishing the Service Q&A

Tools & Technologies

Introduction: The Cloud

HostBuildConsume Packaged Software IaaS: infrastructure as a service PaaS: Platform as a service Saas: software as a service Applications Self- Managed Self- Managed Self- Managed Managed By Vendor Data Runtime Managed By Vendor Middleware O/S Virtualization Managed By Vendor Servers Storage Networking Source: Bret Stateham, Windows Azure evangelist

“… mobile first, cloud first… ” Microsoft CEO Satya Nadella

Universal Apps

 "Apps that are tailored to people with disabilities"  "Apps that are automatically multi-lingual and culture adherent"  "Apps that can run on all platforms (iOS, Android, Windows)"  "A single app package that will work across Microsoft devices“  None of the Above?

Universal Apps for Windows 1 solution 1 shared project (no binary output) 1 project per platform (separate binary output per platform) Windows, Windows Phone, Xbox One (coming soon!) Ref:

Pricing structure – Match Windows Phone pricing on Windows 8 Shared in-app purchases – Buy IAPs only once, on either platform. Install across devices – Buy app only once, own across platforms Shared revenue model – Keep 70% of revenue Unified ad-units for Windows Phone and Windows apps Ref:

Visual Studio

C# and XAML HTML5 & JavaScript C++ and DirectX

Reference:

Reference:

Reference: “This type of project has been improved in Visual Studio 2013 Update 2 and now, if we target Windows 8.1 and Windows Phone 8.1, we’ll be able to use all the common APIs. However, PCL produces a single binary that works as is in all the supported projects. Handling divergent APIs requires using higher-level abstractions, such as dependency injection or IoC containers. We can’t simply use conditional if to define platform specific code.” How about using a Portable Class Library (PCL)?

2.Add Project to Solution: 1.Download & Install “Shared Project Reference Manager” from MSDN: 3.Add Class Library for each platform (Win 8.1 & WP 8.1) 4.Add Shared Project Reference to each Class Library. Ref:

Intro: Cloud + Universal Apps > Creating a Mobile Service > Consuming the Service > Publishing the Service Q&A

Creating a Mobile Service

Link:

Consuming the Service

...

Publishing the Service

Enter a value to test it

Intro: Cloud + Universal Apps > Creating a Mobile Service > Consuming the Service > Publishing the Service Q&A

Intro: Cloud + Universal Apps > Creating a Mobile Service > Consuming the Service > Publishing the Service Q&A

Twitter: