Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For the development of the .NET SDK you will need to setup Visual Studio Express for Desktop. For maintaining the .NET demo application, you will need to setup Visual Studio Express for Web.

...

a) Visual Studio Installations

  1. Go here: http://www.visualstudio.com/en-us/products/visual-studio-express-vs.aspx
  2. Download Express 2013 for Web and install
  3. Download Express 2013 for Desktop and install

...

Info
titleMicrosoft Account

During the install, you may be requested to create a Microsoft account. This should give you a 30 day free trial of Visual Studio Express. After this period, you should be able to permanently extend this free trial period.

Projects Setup

b) Maestrano SDK Setup in VS

  1. Open Visual Studio Express for Desktop (type "VS Express" in search bar)
  2. Click on File > Open Project (or File > Recent Projects and Solutions if you have already opened it before)
  3. Open <maestrano-dotnet-github-dir>/src/Maestrano.SLN (VS Solution file)
Warning
title.NET 4.5 and .NET 4 assemblies

Warning! The main solution file is configured to build the project using .NET 4.5 (most widely adopted version) but Maestrano also supports .NET4

If you are compiling the library with the view to package it and push it to NuGet (online package manager) then you MUST also open the Maestrano.Net40.SLN Solution file and compile the project again.

The .NET45 version binary will be dropped in: <project-folder>\bin\Release\net45

he .NET40 binary will be dropped in: <project-folder>\bin\Release\net45

Note: there are ways to compile both in one go but it's really annoying to setup...

c) Maestrano Demo Application Setup in VS

  1. Open Visual Studio Express for Web (type "VS Express" in search bar)
  2. Click on File > Open Project (or File > Recent Projects and Solutions if you have already opened it before)
  3. Open <maestrano-dotnet-github-dir>/src/MnoDemoApp.SLN (VS Solution file)
  4. You can click on the Play icon at the top to launch the web application and open it in the default browser

...