|
|
||
|---|---|---|
| src | ||
| .gitattributes | ||
| .gitignore | ||
| Clean.cmd | ||
| LICENSE.txt | ||
| MusicStore.sln | ||
| MusicStore.sln.DotSettings | ||
| NuGet.Config | ||
| README.md | ||
| build.cmd | ||
| kvm.cmd | ||
| makefile.shade | ||
README.md
Music store application
###Getting Started
The first thing we need to do is setup the tools required to build and run an application.
- Clone the repository
- On the command line execute
kvm setup - This command will download the latest version of the SDK and put it on your path so that you can run the rest of the commands in the readme. If you want to know more about what this is doing then you can read the KVM page of the wiki.
- If you already have
kvminstalled on the machine ignore above steps.
Run the application:
- Run
build.cmdto restore all the necessary packages and generate project files - Open a command prompt and cd
\src\<AppFolder>\ - [Helios]:
4.
Helios.cmdto launch the app on IISExpress (Application started at URL http://localhost:5001/). - [SelfHost]:
5. Run
k web(Application started at URL http://localhost:5002/) - [CustomHost]:
6. Run
k run(This hosts the app in a console application - Application started at URL http://localhost:5003/)
Switching between Desktop CLR and CoreCLR:
By default the app runs on desktop CLR. To switch to run the app on CoreCLR set environment variable SET TARGET_FRAMEWORK=k10. To switch back to desktop CLR SET TARGET_FRAMEWORK= to empty.
Adding a new package:
- Edit the project.json to include the package you want to install
- 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:
- Run
Clean.cmd- This will clear all the packages and any temporary files generated - Continue the topic "Run the application"
Work against LKG Build:
- Everytime you do a
build.cmdyou 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. - This is a captured snapshot of build numbers which worked for this application. This LKG will be captured once in a while.
Note:
- Application is started on different ports on different hosts. To change the port or URL modify
Helios.cmdor project.json commands section in case of self-host and customhost. - Use Visual studio only for editing & intellisense. Don't try to build or run the app from Visual studio.