Praburaj
59fad3bbb3
Adding CoreCLR variation of test on selfhost
2014-06-06 17:34:12 -07:00
harshgMSFT
dd3dafddb8
Mvc Changes corresponding to Routing DI changes. Refer pr#63
2014-06-06 17:22:06 -07:00
harshgMSFT
a499d4a92a
Routing DI Changes II : Adding services for routing.
2014-06-06 17:08:01 -07:00
Yishai Galatzer
6d78f8adb3
Cache action descriptor providers and provide a race safe data structure to get the version.
...
The default implementation has a safe race, and does not allow for action description addition at runtime.
It can be replaced with an implementation that can reload.
Consumers of the new service that do extra caching are now responsible to look at the version and change the implementation.
2014-06-06 15:19:30 -07:00
ajcvickers
b53404596f
Updating to add new parameter for Navigation class
2014-06-06 15:04:53 -07:00
ajcvickers
bbfb1f2e60
Disabling four tests to unblock the build. Filed issue #107 .
2014-06-06 14:54:28 -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
Ryan Nowak
d112adc1f2
Fix breaking changes from MVC
2014-06-06 11:26:50 -07:00
Ryan Nowak
31d3180635
setting line length to 120 to match our guidelines
2014-06-06 11:09:10 -07:00
Ryan Nowak
bd08a2ca62
fix a build break due to api change
2014-06-06 11:06:41 -07:00
Ryan Nowak
a3314a4805
changing to use list instead of stack
2014-06-06 10:49:58 -07:00
Ryan Nowak
69034b78b8
Issue #65 merge RoutingContext and RequestContext
...
See the relevant PR in aspnet/Routing#60 .
This incorporates the breaking changes.
2014-06-06 10:49:55 -07:00
sornaks
6b836e9e77
Introducing ChallengeResult to call Response.Challenge()
2014-06-06 10:31:18 -07:00
Ryan Nowak
28b89c8fe5
Changing to list
2014-06-06 10:16:47 -07:00
Ryan Nowak
d10682d15b
Issue aspnet/Mvc#56 - merging RouteContext and RequestContext
...
This is the routing part of these changes, and just the breaking changes
parts.
Follow-ups will add:
- DataTokens
- Tracking the logical stack of routers
2014-06-06 10:11:57 -07:00
Brice Lambson
71a77685e6
Add Resources.cs to fix VS warnings
2014-06-06 09:42:09 -07:00
Ryan Nowak
b29ecea4b5
activate line length rule
2014-06-05 14:26:30 -07:00
Ryan Nowak
cf0304b897
Fixing style issues in Mvc.Core
2014-06-04 20:40:23 -07:00
Ryan Nowak
ecbc179d76
Fix stylecop in Microsoft.AspNet.Mvc
2014-06-04 20:06:42 -07:00
Ryan Nowak
1d4ceef81b
Turning on warnings as errors for routing
2014-06-04 18:42:41 -07:00
Graeme Christie
1df3730bb6
Renamed kvmsetup.sh kvminstall.sh in line with Win32 script for consistency
2014-06-05 09:32:17 +08:00
Graeme Christie
1bd9da3620
Updated URL of kvm.sh in install script, now it exists in the upstream repo
2014-06-05 09:28:13 +08:00
Glenn Condron
f6e9c40786
some minor cleanup
2014-06-04 16:14:40 -07:00
Glenn Condron
646dae6d58
Add kvminstall.ps1 to allow easier acquisition of KVM
2014-06-04 16:14:36 -07:00
David Fowler
9851adabc0
Merge pull request #48 from graemechristie/KvmShellImplementation
...
Kvm shell implementation
2014-06-05 00:25:15 +02:00
N. Taylor Mullen
879a50846a
Transition Microsoft.AspNet.Razor.Test from csproj to kproj.
...
The largest sub-segment change was removing the Microsoft.TestCommon project. Ultimately it involved touching every test file and re-mapping them to use Xunit directly instead of a helper class which was initially ported over for legacy reasons. Lastly how files were embedded before included the full path to the embedded file; currently there is no path associated with the embedded files so had to make modifications to account for this. This is a temporary change and I left comments in the locations where we'll need to uncomment out old code once embeded files act the same as they used to.
#18
2014-06-04 14:58:04 -07:00
N. Taylor Mullen
9a6a3af450
Transition Microsoft.AspNet.Razor from csproj to kproj.
...
Needed to modify some source to use new resx format.
#32
2014-06-04 14:58:01 -07:00
N. Taylor Mullen
dd90767036
Fix build warnings in razor repo.
...
This involved indicating that we really wanted to hide certain methods.
#43
2014-06-04 14:25:13 -07:00
Pranav K
97e06138ed
Cleaning up StyleCop errors
2014-06-04 13:28:30 -07:00
Hao Kung
8001ba8401
Fix sign in regression
...
Added missing SupportUserTwoFactor guard in SignInManager
2014-06-04 13:08:06 -07:00
Ryan Nowak
4a51ced5de
Fix project file
2014-06-04 13:02:37 -07:00
Praburaj
6d50b397c0
The cookie name pointed by DefaultAuthenticationTypes.ApplicationCookie changed
...
This was changed with a recent identity checkin. Fixing this in test which was expecting a different cookie name.
2014-06-04 12:45:38 -07:00
Hao Kung
892afc5fab
React to Identity API changes
2014-06-04 11:13:13 -07:00
Hao Kung
9053ec56a4
Move SignIn Manger to core
...
Also cleans up CTP1 interface/tests
2014-06-04 10:35:07 -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
harshgMSFT
1d3e41560c
Routing DI Changes I:
...
Moving out Default Handler and IInlineConstraintResolver from RouteCollection.
These are moved to a new interface IRouteBuilder, (instead of an IInlineConstraintResolver, it takes in an IServiceProvider).
This means all RouteCollectionExtensions are moved to RouteBuilderExtensions.
2014-06-03 16:50:48 -07:00
harshgMSFT
b96da245cb
RouteCollection -> RouteBuilder changes for MVC.
2014-06-03 16:43:54 -07:00
Louis DeJardin
c9d6db14bc
Adding an engine, a thread manager, an accept loop
2014-06-03 16:41:55 -07:00
sornaks
dffc58dedc
Issue #242 - Introducing ObjectContentResult
2014-06-03 16:00:36 -07:00
Hao Kung
3fb1a06e25
Add OptionsServices in UseServices
2014-06-03 15:03:57 -07:00
Pranav K
4f255f8583
Changes for @inject support
...
Fixes #35
2014-06-03 14:20:11 -07:00
Pranav K
0467fd906b
Merge branch 'ViewResultTest' into dev
2014-06-03 13:58:07 -07:00
Pranav K
06362db5dc
Adding unit test for ViewResult
2014-06-03 13:53:51 -07:00
harshgMSFT
483e9038b4
Supporting Urls With ~/ while redirecting.
...
Fix for Issue#304
2014-06-03 11:29:27 -07:00
Pranav K
caa18342bc
Updating makefile to include Options and Logging repos
2014-06-03 11:13:25 -07:00
Pranav K
032ad4a444
Updating makefile to include Options and Logging repos
2014-06-03 11:10:02 -07:00
Pranav K
967ca3757e
Updating makefile to include Options and Logging repos
2014-06-03 11:06:48 -07:00
Pranav K
d1aed15ec4
Adding switch to build.cmd to skip KRE install
2014-06-03 10:17:34 -07:00
Pranav K
352063a7c8
Adding switch to build.cmd to skip KRE install
2014-06-03 10:17:12 -07:00
Rowan Miller
d2a4f7bb2e
Update CONTRIBUTING.md
2014-06-03 10:17:02 -07:00