You can develop windows IoT Core app in Python in Visual Studio.To develop app in visual studio 2017 first you need to add the Python IoT Support feature in Visual Studio Install the Cpython for UWP from the following link CPython for UWP After it is installed you can create a new project in Visual Studio […]
dotnet
Set IP address of remote machine in windows IoT Core
We can set the IP address of Remote machine and authentication mode in Visual Studio 2017 by following the below steps: Open the project which you want to deploy on remote machine in Visual Studio Right click and select properties. Select the debug tab In the marked yellow area you can enter the appropriate IP […]
Dotnet core command line interface(CLI)
The .NET Core Command Line Interface (CLI) is a tool used for developing and building .NET applications.Youc an perform different actions using the CLI such as creating a new project , restoring dependencies,building project,publishing project. To use dotnet core CLI you need to install SDK from the following url: https://www.microsoft.com/net/download/windows After installing the SDK you […]
.NET Core 2.1 Overview
.NET Core is a development platform by Microsoft.In simple words .NET Core is .NET version which can run on different Operating systems and different devices from desktops to embedded devices.From developers perspective the APIs in .NET Core are subset of APIs in .NET standard. .NET core supports following Operating Sytems: Windows macOS Linux new versions […]