Praburaj
49ba8ce9ac
Adding a startup class to setup Ntlm authentication
...
This uses the environment based Startup class detection to load the Ntlm Startup class. Default will be the Cookies/Social auth.
2014-09-02 11:07:28 -07:00
Praburaj
b56cecc817
Refactoring the test code a little bit to enable adding more scenarios
...
And some general cleanup.
2014-08-29 16:35:02 -07:00
Praburaj
01c6489454
Adding a LINQ query to get all albums to improve performance
2014-08-29 13:41:43 -07:00
Praburaj
45406bf082
Moving the admin into a separate area
...
Using areas in the sample
2014-08-29 13:06:50 -07:00
David Fowler
94258eba8a
Updated to use the new target framework in project.json
2014-08-29 00:13:02 -07:00
Praburaj
9f4d46714b
Updating the sample to use VS 2013 Update 3 templates for Identity
...
1. This contains the new manage controller with a bunch of features like 2 factor auth
Some of the features are not enabled yet. But this is to set a baseline with update3 templates.
Automation to come up in future as more identity extensions are available.
2014-08-28 16:57:43 -07:00
Hao Kung
e60b1665e3
React to Identity Rename
2014-08-25 11:41:49 -07:00
ajcvickers
9ee9104883
Reacting to ConventionModelBuilder name change
2014-08-15 11:35:24 -07:00
ajcvickers
e2736173e8
Change ModelBuilder to ConventionModelBuilder
2014-08-15 08:45:28 -07:00
Praburaj
cb9184e1c0
Prevent binding on some columns in order
2014-08-12 12:28:11 -07:00
Praburaj
abd215a543
Using HttpNotFound helper in actions returning 404
2014-08-12 11:44:48 -07:00
Praburaj
ca515e3e87
Adding missing Anti-Xsrf token validations in some Post actions
...
1. Also adding this validation on a AJAX only used action.
2014-08-08 12:46:36 -07:00
Praburaj
302f5a00fa
Using auto generated id for albums
2014-07-30 15:31:13 -07:00
Praburaj
7470e3cb28
@Html.ValueFor replaced with @Html.DisplayFor
...
The original sample used @Html.DisplayFor. While porting I changed it to use ValueFor. Xinyang pointed out this difference.
Fixing this so that it can be easily compared with the original sample. The results of the view unchanged.
2014-07-30 15:13:25 -07:00
Praburaj
644c45ae5c
Adding a _ViewStart page to define the Layoutpage
...
Removing the Layout page reference from individual cshtml files.
Added some tests to verify layout getting rendered in every view.
Added a couple of verifications to verify that title of the page is set appropriately.
2014-07-30 14:56:20 -07:00
Suhas Joshi
77a9885118
Handled starting IISExpress based on architecture
2014-07-24 15:39:55 -07:00
Hao Kung
fe30a0418e
React to Identity changes
2014-07-23 12:36:21 -07:00
Praburaj
b440d4ff66
Use InMemoryStore if the sample is being run on Mono
...
Detecting if the application is running on mono and using InMemoryStore instead of SqlServer.
2014-07-22 18:02:22 -07:00
Praburaj
91cc369f4f
Fixing CopyAspNetLoader batch file to consider the new location of AspNet.Loader.dll
...
With a recent change Aspnet.Loader.dll will be restored to %userprofile%\.kpm\packages. Fixing the batch file accordingly.
2014-07-22 16:47:03 -07:00
Praburaj
3c0eefe12e
Merging the MusicStore & MusicStoreIdentity Db into one.
...
This has been a feedback from identity team for a while. Just got time to do it now.
2014-07-22 16:44:23 -07:00
Hao Kung
53e4626127
React to Identity changes
2014-07-15 13:05:07 -07:00
David Fowler
30df49535c
Fixed project.json casing
2014-07-13 22:49:42 -07:00
David Fowler
efd225a9cd
Renamed configurations to frameworks in project.json
2014-07-13 22:31:03 -07:00
DamianEdwards
db429b0d59
Updated AngularHtmlHelper based on MVC changes
2014-07-08 18:23:58 -07:00
Ryan Nowak
42b5aac1b1
fixing a broken link in musicstore.
2014-07-08 17:18:39 -07:00
Ryan Nowak
c2140666d9
fix build break in music store
2014-07-03 19:25:29 -07:00
Praburaj
0b0b5837fd
A few changes with this checkin
...
1. Fixed the delete album action
2. Added a test for add to cart, checkout & delete an album scenarios.
With this the scenario set becomes complete.
2014-07-03 16:05:58 -07:00
Praburaj
047db6d5f4
Change with this submission
...
Fixes # https://github.com/aspnet/MusicStore/issues/105
2014-07-03 12:58:26 -07:00
Praburaj
8c7bc1a9c8
Auto id generation is available for entities
...
Previously the sample had work arounds to generate an id itself while adding a new item into a table. Removing the work around.
2014-07-03 12:37:31 -07:00
Praburaj
04de187189
Changing the connection strings to use Dev14 LocalDB
...
Addresses https://github.com/aspnet/MusicStore/issues/159
2014-07-03 12:35:52 -07:00
Praburaj
974bfcab7a
Adding kestrel variation of the MusicStore tests
...
Variation added for both Desktop & CoreCLR.
Added some more diagnostics to help better trouble shoot with more variations.
2014-07-02 17:32:31 -07:00
Hao Kung
dd1a75370d
React to identity renames
2014-06-23 15:16:43 -07:00
Brice Lambson
54a66fc70e
React to more renames
2014-06-20 09:34:14 -07:00
David Fowler
32cd4db959
React to Helios rename
2014-06-19 22:26:28 -07:00
Brice Lambson
b41abcffa6
React to version bumps and renames
2014-06-19 16:00:13 -07:00
Praburaj
2f88fb4d9d
Removing work around applied
...
Bug https://github.com/aspnet/identity/issues/102 is fixed. Removing the work around applied for the same.
2014-06-06 12:10:46 -07:00
Hao Kung
892afc5fab
React to Identity API changes
2014-06-04 11:13:13 -07:00
Praburaj
a7e4fa9c9d
OptionsServices.GetDefaultServices() call no longer required
...
This is in response to a recent change.
2014-06-03 17:02:07 -07:00
Praburaj
6cd501c5f7
Work around for the identity bug to unblock CI test
...
Identity internally overrides the explicitly specified connection string by overriding it with a default value. This results in reusing a default database causing test failures. Until identity is fixed this is a work around.
2014-05-30 12:19:19 -07:00
Brice Lambson
9cb6325bf3
React to aspnet/EntityFramework#264
2014-05-28 14:36:10 -07:00
Hao Kung
083601c539
Add options services to Startup
2014-05-28 13:43:13 -07:00
Hao Kung
043dbb2940
Changes for OptionsModel
2014-05-28 12:51:48 -07:00
Praburaj
b8782ee2bf
Adding a REST method to the StoreManagerController for automation purpose.
...
Adding this action to get Id of an album given an album name.
2014-05-27 17:29:19 -07:00
ajcvickers
ad49e49b7f
Pass DbContextOptions directly to base DbContext constructor.
2014-05-27 12:48:24 -07:00
Praburaj
11a71e950d
Adding some more test scenarios to MusicStore and moving the scenarios in methods.
2014-05-23 16:11:56 -07:00
Praburaj
8409e9518b
Catching up MusicStore app with code generated with latest templates
2014-05-23 14:35:08 -07:00
Praburaj
81e1e00d78
Removing k.ini to run against latest KRE version
2014-05-22 12:23:56 -07:00
Praburaj
dc9c16ff64
Cleaning up project.json of MusicStore app
2014-05-21 11:56:39 -07:00
Praburaj
3e536055ba
Replacing fixed build numbers with * to enable CI build
...
Created a master branch with fixed build numbers that we used for alpha. Dev branch will build with latest product builds.
2014-05-19 13:23:53 -07:00
Pranav K
e36eb0ffb6
Updating kproj file to match tooling changes
2014-05-18 22:34:02 -07:00