Chris Ross
9281e7e67a
Update System.Runtime.InteropServices dependency.
2014-04-10 14:11:22 -07:00
Wei Wang
86d327366f
Fix wrong order of arguments passed to ArgumentException ctor
2014-04-10 13:56:50 -07:00
Praburaj
b51f54e98a
Adding a view component for cart summary
...
1. Added a View component named CartSummary
2. Moved the CartSummary.cshtml as default.cshtml to shared\Components
2014-04-10 13:46:58 -07:00
dougbu
d7110017fd
Sample should be built in VS
...
- catches errors because some methods are used only from views or controllers
2014-04-10 11:52:58 -07:00
Ryan Nowak
408d4056b1
Rearrange ViewContext
2014-04-10 11:40:57 -07:00
Ryan Nowak
cda73e95a8
Integrate dictionary helper with existing code paths
2014-04-10 11:21:35 -07:00
rowanmiller
58d4b48690
Swap database creation to use EF
...
Swapping database creation to use native support added to EF.
Also swapping to async methods for database initialization.
2014-04-10 09:28:10 -07:00
dougbu
f0c6512b61
Catch up with previous `ActionNameAttribute` addition
2014-04-10 09:27:45 -07:00
David Fowler
0bda88145d
Removed declared ANIs and referenced Microsoft.Net.Runtime.Interfaces instead
2014-04-09 22:14:59 -07:00
David Fowler
e3c64aeb55
Updated to use the new tooling
2014-04-09 22:08:21 -07:00
David Fowler
1a9c0ad548
Reduce project.json dependencies
2014-04-09 21:33:59 -07:00
Glenn
32723607f5
Update README.md
2014-04-09 17:26:31 -07:00
David Fowler
0f11463bef
Update GetRuntime.cmd
...
Removed KoreBuild
2014-04-09 16:11:34 -07:00
David Fowler
3f26dd5af9
Update K.cmd
...
Fixed spaces
2014-04-09 16:11:06 -07:00
harshgMSFT
53b76380eb
Adding ActionName Attribute
2014-04-09 15:48:30 -07:00
Glenn
069af090d0
Update README.md
2014-04-09 15:18:35 -07:00
dougbu
1da2d6d9dc
Checkin VS auto-update to .kproj file
2014-04-09 14:31:33 -07:00
dougbu
82b071c80e
Add CR-requested comment
2014-04-09 14:30:12 -07:00
Javier Calvarro Nelson
89e532873e
Bumped the version of System.Threading.Tasks to 4.0.10.0 to fix the build break in the remaining project.json
2014-04-09 14:05:01 -07:00
Javier Calvarro Nelson
73a00a1b21
Bumped the version of System.Threading.Tasks to 4.0.10.0 to fix the build break
2014-04-09 14:00:06 -07:00
Javier Calvarro Nelson
8ca4a331e2
Created an in memory host for testing purposes and added the appropriate
...
APIs to allow sending requests through the pipeline easily.
2014-04-09 12:58:58 -07:00
dougbu
f0a97772f5
Add remaining HTML input helpers
...
- add `CheckBox[For]()`, `Hidden[For]()`, `Password[For]()`, and
`RadioButton[For]()`
- also make `FormatValue()` visible to users, as it is in legacy MVC
- and spread the boxes out a bit in MyView 😺
2014-04-09 12:52:47 -07:00
David Fowler
b1fd5cc689
Made a few more changes since we have new tooling
...
- Remove runtime interface declarations and use
Microsoft.Net.Runtime.Interfaces package
- Made tests compile for net45 and made default
intellisense view net45 for unit tests since Moq
doesn't work
2014-04-09 12:24:16 -07:00
David Fowler
a970fa04ab
Updated to use the new tooling
2014-04-09 12:24:16 -07:00
Praburaj
0f25f9ff6b
Html.ActionLink helper available.
...
Enabling music store code to use the Html.ActionLink helper.
2014-04-09 12:04:53 -07:00
Ryan Nowak
35bfa84274
CR feedback
2014-04-09 11:10:05 -07:00
Ryan Nowak
4e1511ed4d
Adding ActionLink
2014-04-09 11:07:15 -07:00
Praburaj
8610e016b3
Setting the full path to load the Config.json.
...
Specifying just the name of the file works fine on selfhost or IISExpress. When app is hosted in IIS, Config.json is being searched in the w3wp3.exe's folder path resulting in an exception.
So fixing the path of Config.json by retrieving the application base path from AppDomain.
2014-04-09 10:43:52 -07:00
Pranav K
c8ede78582
Expanding ValueProviderResult to support more data types
...
* Reviving tests for ValueProviderResult
2014-04-09 09:33:29 -07:00
Pranav K
ea3e958563
Adding unit tests for CompositeModelBinder
2014-04-08 18:48:01 -07:00
Praburaj
f4cee29842
Html.BeginForm works now on Partial views.
...
So uncommenting some code which uses this in music store app.
2014-04-08 16:45:49 -07:00
Ryan Nowak
527394c492
CR feedback
2014-04-08 16:05:51 -07:00
Ryan Nowak
e740633c06
CR feedback
2014-04-08 16:05:49 -07:00
Ryan Nowak
ab605ef935
Fix for #215 - nullref trying to generate link in a partial
...
The fix here is to do some cleanup we've been planning to do for a while,
rather than flowing IUrlHelper and IComponentHelper as part of the
ViewContext, they now are just grabbed from the service provider.
This simplifies the code for invoking a view, and gets us closer to the
desired API surface of ViewContext
2014-04-08 16:05:48 -07:00
Ryan Nowak
749789c486
CR feedback
2014-04-08 15:57:40 -07:00
Ryan Nowak
084c7f80e5
Further rearranging IView/IViewEngine/ViewContext et al
2014-04-08 15:57:39 -07:00
Praburaj
ccc257f8fc
Adding environment based config to the music store project with a Config.json file for local.
...
If the same set of values (those present in config.json) is present in the environment variables
then ones from environment variables be picked up. This will be the antares scenario where the portal variables
flow in as environment variables with a specific prefix.
2014-04-08 14:21:19 -07:00
David Fowler
1998b65c52
Updated to use the new tooling
2014-04-08 13:01:23 -07:00
Praburaj
c0250392b2
Enabling @RenderSection in the Music store code.
2014-04-08 12:48:12 -07:00
Praburaj
0db736b056
Uncommenting code to use [HttpPost] verb attribute.
2014-04-08 12:25:42 -07:00
dougbu
4feb8f4f28
Remove reduncant `ArgumentNullOrEmpty` resource from Core project
...
- came from Rendering but Core already had `ArgumentCannotBeNullOrEmpty`
- moved wording from "argument must not be" to "value cannot be"
Also make similar resources consistent in this repo
- adjust Razor's `ArgumentCannotBeNullOrEmpty` resource to use same wording
as Core, adding "The"
- update ModelBinding to also have `ArgumentCannotBeNullOrEmpty` and to use
it consistently with Core and Razor
2014-04-08 12:03:50 -07:00
Chris Ross
551fca35d3
Review cleanup, rename Provider to Notifications, use NotNull.
2014-04-08 11:28:08 -07:00
Sornakumar
b25091f6c1
Merge branch 'WebFX156' into dev
2014-04-08 10:52:38 -07:00
sornaks
7c8dd45b8b
WebFX 156 - Adding support for Redirect and RedirectPermanent
2014-04-08 10:49:56 -07:00
Praburaj
3d54a24244
Removing the rendering package from music store app to fix a build error. Rendering and Core are merged now.
2014-04-08 10:42:10 -07:00
David Fowler
a8a47a0489
Removed all assembly infos.
2014-04-08 09:25:29 -07:00
David Fowler
f5f225e6ea
Updated to use new tooling
2014-04-08 02:11:05 -07:00
David Fowler
7a976d069e
Updated to use new tooling
2014-04-08 02:00:50 -07:00
David Fowler
26fedbb999
Updated tooling
2014-04-08 01:42:21 -07:00
David Fowler
23c11bc950
Updated to use the new tooling
2014-04-08 01:37:06 -07:00