Fixing missing files in kproj

Fixing typo in sample filter
This commit is contained in:
Pranav K 2014-04-25 14:48:14 -07:00
parent 8eecad9d83
commit f5ba63ea1e
3 changed files with 5 additions and 2 deletions

View File

@ -8,7 +8,7 @@ namespace MvcSample.Web.Filters
{
if (!HasAllowAnonymous(context))
{
var user = content.HttpContext.User;
var user = context.HttpContext.User;
var userIsAnonymous =
user == null ||
user.Identity == null ||

View File

@ -60,7 +60,7 @@
<Compile Include="AntiForgery\ITokenGenerator.cs" />
<Compile Include="AntiForgery\ITokenStore.cs" />
<Compile Include="AntiForgery\ITokenValidator.cs" />
<Compile Include="AntiForgery\TokenValidator.cs" />
<Compile Include="AntiForgery\TokenProvider.cs" />
<Compile Include="Areas\AreaAttribute.cs" />
<Compile Include="Areas\ReflectedRouteConstraintsActionDescriptorProvider.cs" />
<Compile Include="BodyParameterInfo.cs" />

View File

@ -46,8 +46,11 @@
<Compile Include="Validation\DataMemberModelValidatorProviderTest.cs" />
<Compile Include="Validation\ErrorModelValidatorTest.cs" />
<Compile Include="Validation\InvalidModelValidatorProviderTest.cs" />
<Compile Include="Validation\MaxLengthAttributeAdapterTest.cs" />
<Compile Include="Validation\MinLengthAttributeAdapterTest.cs" />
<Compile Include="Validation\ModelStateDictionaryTest.cs" />
<Compile Include="Validation\ModelValidationNodeTest.cs" />
<Compile Include="ValueProviders\DictionaryBasedValueProviderTests.cs" />
<Compile Include="ValueProviders\FormValueProviderFactoryTests.cs" />
<Compile Include="ValueProviders\QueryStringValueProviderFactoryTest.cs" />
<Compile Include="ValueProviders\ReadableStringCollectionValueProviderTests.cs" />