Go to file
Praburaj e57ca9ab61 A bug in Html Summary when trying to render error messages in a model state error bag is fixed.
Modifying the sample to use the fix.
2014-04-28 16:15:14 -07:00
src A bug in Html Summary when trying to render error messages in a model state error bag is fixed. 2014-04-28 16:15:14 -07:00
.gitattributes
.gitignore
Clean.cmd A few changes with this checkin: 2014-04-02 18:40:25 -07:00
MusicStore.sln
MusicStore.sln.DotSettings Drown your issues in Kool Aid (Updating K Music Store app to use EF/E API surface) 2014-02-13 08:49:26 -08:00
NuGet.Config Updating MyGet feed to unblock build 2014-03-11 11:49:22 -07:00
README.md Modifying the Helios.cmd, Selfhost.cmd and CustomHost.cmd to start the application on different ports on different hosting models. 2014-04-28 10:32:59 -07:00
build.cmd Updatng build.cmd to use cached NuGet.exe 2014-02-02 08:31:24 -08:00
makefile.shade

README.md

Music store application

Run the application:

  1. Run build.cmd to restore all the necessary packages and generate project files
  2. Open a command prompt and cd \src<AppFolder>\
  3. [Helios]: 4. Helios.cmd to launch the app on IISExpress (Application started at URL http://localhost:5001/).
  4. [SelfHost]: 5. Run Selfhost.cmd (This runs k web - Application started at URL http://localhost:5002/)
  5. [CustomHost]: 6. Run CustomHost.cmd (This hosts the app in a console application - Application started at URL http://localhost:5003/)

Adding a new package:

  1. Edit the project.json to include the package you want to install
  2. Do a build.cmd - This will restore the package and regenerate your csproj files to get intellisense for the installed packages.

Work against the latest build:

  1. Run Clean.cmd - This will clear all the packages and any temporary files generated
  2. Continue the topic "Steps to run the application"

Work against LKG Build:

  1. Everytime you do a build.cmd you will get the latest packages of all the included packages. If you would like to go back to an LKG build checkout the LKG.json file in the MusicStore folder.
  2. This is a captured snapshot of build numbers which worked for this application. This LKG will be captured once in a while.

Note:

  1. The scripts Helios.cmd, SelfHost.cmd and CustomHost.cmd will start the application on different ports. To change the port or URL modify the scripts or project.json (in case of selfhost alone).
  2. Use Visual studio only for editing & intellisense. Don't try to build or run the app from Visual studio.