What package is Windows.System.Launcher in? - c#

I am looking to use Windows.System.Launcher in a Windows Form application. I am using Visual Studio Express 2012 on a Windows 7 machine and the application is .Net 4.5
I can't seem to find what reference to add. (What package) ?

Windows.System.Launcher is a Windows Store App API that is only available on Windows 8.
You should call Process.Start(url).

Windows.System.Launcher is a Windows Store app only feature, as can bee seen in the MSDN documentation:
Minimum supported client Windows 8 [Windows Store apps only]
Minimum supported server Windows Server 2012 [Windows Store apps only]

Related

Windows Store Apps unavailable in VS 2015 RC

I am trying to create my first Store app for Windows 8.
I installed VS2015 RC and the Windows Software Development Kit for Windows 8 (I followed the instructions at this page).
Unfortunately I can't see the Windows Apps templates in VS, differently from what the link shows .
I am running VS2015 Enterprise RC on a Windows 7 machine.
What am I missing? Thank you
Minimum required OS for developing Windows Store Apps is Windows 8. With Windows 7 you wont be able to develop Store apps.

Visual Studio 2012 Update 4 No Option to Create "Windows 8 Store App"

I am trying to create sample application for Windows 8 Embedded Handheld or Windows Store App, for that I have following configuration.
Configuration:
1. Windows 8 64Bit OS
2. Visual Studio 2012 Express Edition With Update 4 Installed
3. Windows Phone 8 SDK, Downloaded From This Link.
4. Windows 8 Embedded Handheld SDK, Downloaded From This Link.
But when I start my Visual Studio I don't see any option for Creating Windows Store App as Given in This video.
Also I am not able to see installed Windows 8 Phone SDK and W8EH SDK in, about screen of the Visual Studio 2012.
UPDATE
It will be very helpful if we have list of all the supported versions of Visual Studio with there targeted use, like for Desktop/Mobile(or 'Phone' it is also one more confusion)/Handheld/Embedded/Store, else it is very confusing for the beginners to decide which version of Visual Studio to use for development of Embedded/Handheld Application development.
You have the wrong edition of VS Express. You have the edition for Windows Desktop, which is for creating traditional Windows desktop applications. You need the edition for Windows, which is for creating Store apps that target the Modern UI.

Getting error when I to try to install my program on Windows 2000

I am getting an error when I try to install my program (C# , Winforms, .NET 2.0) on Windows 2000:
The procedure entry point GetNativSystemInfo could not be located in the dynamic link library KERNEL32.dll
It the API you are using is simply not available at Windows 2000.
See also the MSDN about GetNativeSystemInfo:
Minimum supported client
Windows XP [desktop apps | Windows Store apps]
Minimum supported server
Windows Server 2003 [desktop apps | Windows Store apps]
Why don't you use the function GetSystemInfo which is available for Windows 2000.

Is there a way to create a windows phone 8 app in windows 7 and visual studio 2012

Is there a way to create and test an app (emulator for windows phone 8) in visual studio 2012 and windows 7? I got all the proper SDKs etc from Dreamspark but I cannot seem to find a way to do it in windows 7. It's only "doable" in windows 8?
probably not, Microsoft only released it for Windows 8, but you can always have a virtual machine and Dreamspark also has licenses for Windows, so you won't have any issues with that neither.
No. Running the WP8 emulator on Win7 won't work. The WP8 emulator is based on Hyper-V which isn't supported on Win7. You can still develop WP8 apps on WIn7 and deploy to a real device. Or you should upgrade your Win7 installation to Win8 using your fre dreamspark license and then you could use the WP8 emulator.
No, the WP8 SDK will only run on Windows 8.A reason is the hypervisor in Windows 8 is used to emulate or virtualise Windows phone 8 machines. That and marketing of course.

Adding Windows Azure Mobile Service to the Mobile Application in Visual Studio

I am trying my hands on Windows Azure Mobile Services. My environment is Visual Studio 2010. Azure SDK is installed. And operating system is Windows 7.
I have created a Windows Azure Mobile Services and also created the sample database and the table as instructed while creating the service.
On the other hand I have installed Mobile SDK on my Visual Studio 2010. The instructions from the Azure site says, "add a reference to the "Windows Azure Mobile Services Client" extension"
When I try to add the reference to my project inside the Visual Studio, I do not find any package by name Windows Azure Mobile Services Client or anything as such. Can some one please help me by letting me know the path where the dll is? Or if there is anything I have missed while trying to add the reference.
Thanks
If I'm not mistaken, Windows Azure Mobile Service SDK is not supported for Windows 7 and VS 2010. On Windows platform, You can only build mobile applications for Windows 8 (Windows Store Apps) using VS 2012.
Hope this helps.
To add to Gaurav's answer, Windows Azure Mobile Svcs does support Windows Phone 8 (in addition to Windows Store apps), but not Windows Phone 7. You can still retrieve data from WAMS from any client via a REST call though.

Categories

Resources