Base solution for your next web application

Activities of "aaronwittman"

This is really funny. I got same error (After change my Solution name)

Check the logic in <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate-samples/blob/master/SimpleTaskSystem-Core/src/Acme.SimpleTaskApp.Core/Web/WebContentFolderHelper.cs">https://github.com/aspnetboilerplate/as ... rHelper.cs</a>

Seems like its looking for fixed solution name, and assume it as the Root folder.

Change it to old Solution name fix this issue.

Thanks will try it out :)

Great! please add - awittman

I am getting the same problem. Any advice on how to address this issue or if this has been fixed?

The url for githuib btw is also returning 404.

Yes, if you could please provide the change to replace the Mapper.CreateMap function as this no longer exists. I assume it will use the map method that exists on the class? Commenting this out and the issue below allows the application to run but getting anti forgery error on login.

Also getting an error on the usage of the clock provider?

protected override void Application_Start(object sender, EventArgs e) { //Use UTC clock. Remove this to use local time for your application. Clock.Provider = new UtcClockProvider();

Error CS1729 'UtcClockProvider' does not contain a constructor that takes 0 arguments Web\Global.asax.cs 15 Active

Look forward to your reply :)

I have found that I should have changed the IdentityFrameworkClaimsAbpSession to ClaimsAbpSession and this now complies. Looking to understand the change for the mapper method.

private static void CreateMappingsInternal() { Mapper.CreateMap<User, UserEditDto>() .ForMember(dto => dto.Password, options => options.Ignore()) .ReverseMap() .ForMember(user => user.Password, options => options.Ignore()); }

Mapper.CreateMap<User, UserEditDto>()

Showing 1 to 6 of 6 entries