Fixing missing files in kproj
Fixing typo in sample filter
This commit is contained in:
parent
8eecad9d83
commit
f5ba63ea1e
|
|
@ -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 ||
|
||||
|
|
|
|||
|
|
@ -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" />
|
||||
|
|
|
|||
|
|
@ -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" />
|
||||
|
|
|
|||
Loading…
Reference in New Issue