From d2a65f2366f80d816aafd8fd6595c02163f55746 Mon Sep 17 00:00:00 2001 From: Glenn Condron Date: Mon, 12 May 2014 18:56:41 -0700 Subject: [PATCH] Rename web sample, fix some readme problems --- README.md | 2 +- samples/{HelloWebFx => HelloMvc}/Controllers/HomeController.cs | 0 samples/{HelloWebFx => HelloMvc}/Models/User.cs | 0 samples/{HelloWebFx => HelloMvc}/Startup.cs | 0 samples/{HelloWebFx => HelloMvc}/Views/Home/Index.cshtml | 0 samples/{HelloWebFx => HelloMvc}/Views/Shared/_Layout.cshtml | 0 samples/{HelloWebFx => HelloMvc}/project.json | 0 7 files changed, 1 insertion(+), 1 deletion(-) rename samples/{HelloWebFx => HelloMvc}/Controllers/HomeController.cs (100%) rename samples/{HelloWebFx => HelloMvc}/Models/User.cs (100%) rename samples/{HelloWebFx => HelloMvc}/Startup.cs (100%) rename samples/{HelloWebFx => HelloMvc}/Views/Home/Index.cshtml (100%) rename samples/{HelloWebFx => HelloMvc}/Views/Shared/_Layout.cshtml (100%) rename samples/{HelloWebFx => HelloMvc}/project.json (100%) diff --git a/README.md b/README.md index e2dea960a6..065c5a9f96 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ The first thing we need to do is setup the tools required to build and run an ap * Clone the repository * On the command line execute ```kvmsetup.cmd``` * This command will setup your environment, getting it ready to install a version of the runtime. It adds kvm to your path and puts it in your user profile. -* Execute ```kvm install 0.1-alpha-build-0421```. This command will download the named version of the KRE and put it on your user profile ready to use. You can get the latest version by running ```kvm upgrade``` but 0421 was the last version explicityl tested. see the [KVM page](https://github.com/aspnet/Home/wiki/version-manager) for more information on KVM. +* Execute ```kvm install 0.1-alpha-build-0421```. This command will download the named version of the KRE and put it on your user profile ready to use. You can get the latest version by running ```kvm upgrade``` but 0421 was the last version explicitly tested. see the [KVM page](https://github.com/aspnet/Home/wiki/version-manager) for more information on KVM. * Navigate to samples\ConsoleApp * Run ```K run``` * You should see a message saying "Hello World" diff --git a/samples/HelloWebFx/Controllers/HomeController.cs b/samples/HelloMvc/Controllers/HomeController.cs similarity index 100% rename from samples/HelloWebFx/Controllers/HomeController.cs rename to samples/HelloMvc/Controllers/HomeController.cs diff --git a/samples/HelloWebFx/Models/User.cs b/samples/HelloMvc/Models/User.cs similarity index 100% rename from samples/HelloWebFx/Models/User.cs rename to samples/HelloMvc/Models/User.cs diff --git a/samples/HelloWebFx/Startup.cs b/samples/HelloMvc/Startup.cs similarity index 100% rename from samples/HelloWebFx/Startup.cs rename to samples/HelloMvc/Startup.cs diff --git a/samples/HelloWebFx/Views/Home/Index.cshtml b/samples/HelloMvc/Views/Home/Index.cshtml similarity index 100% rename from samples/HelloWebFx/Views/Home/Index.cshtml rename to samples/HelloMvc/Views/Home/Index.cshtml diff --git a/samples/HelloWebFx/Views/Shared/_Layout.cshtml b/samples/HelloMvc/Views/Shared/_Layout.cshtml similarity index 100% rename from samples/HelloWebFx/Views/Shared/_Layout.cshtml rename to samples/HelloMvc/Views/Shared/_Layout.cshtml diff --git a/samples/HelloWebFx/project.json b/samples/HelloMvc/project.json similarity index 100% rename from samples/HelloWebFx/project.json rename to samples/HelloMvc/project.json