Base solution for your next web application

Activities of "twigman08"

I wanted to try out and get my hands dirty with the ASP.NET Core framework template in hopes of using it a little later down the road. So after creating test project template with it and running the default project I see that it will not run for me.

I click run and as it tries to load everything in I get the following Exception:

An exception of type 'System.IO.FileLoadException' occurred in mscorlib.dll and wasn't handled before a managed/native boundary

Additional information: Could not load file or assembly 'System.IO.FileSystem, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

This is with the default project template. The only thing changed was updating the connection string to point to my local instance of SQL Server.

I have: .NET Core 1.1 SDK Installed Visual Studio 2015 Update 3 Visual Studio .NET Core Tools installed (Preview 2)

I have tested and successfully ran the default Visual Studio .NET Core and ASP.NET Core Templates to be sure that I can actually run .NET Core apps no problem.

Any help would be greatly appreciated with this. If you need more information then just let me know. Thanks!

This issue just seemed to pop up, though a little unsure why it did. Though on any page I go to now in my web app using Abp I get a 500 Internal Server Error when it tries load the dynamic scripts up.

This is where I get the error:

<script src="/api/AbpServiceProxies/GetAll"></script> // this executes just fine
<script src="/AbpScripts/GetScripts" type="text/javascript"></script> // this gives me the 500 internal server error

I'd assume it is because it is trying to load the scripts from <a class="postlink" href="http://www.myurl.com/AbpScripts/GetScripts">www.myurl.com/AbpScripts/GetScripts</a> which wouldn't seem like a valid route unless Abp creates that route? As of right now this isn't causing any issue, everything else works just fine, but wanted to see if this has popped up before, and/or why this has just all of a sudden started to pop up.

Thanks for any help.

I am new to using Module Zero, and just manually installed it in my application. I wanted to do some quick tests on a login method and everything has been working great. I then wanted to test out when a user hasn't confirmed their email yet so I created a quick test user where their email is not confirmed. I noticed that the AbpLoginResultType enum has a UserEmailIsNotConfirmed so I checked for that result after LoginAsync, though found that the result still was still of Success even with a email that was not confirmed.

I didn't find it mentioned in the docs anywhere, but is their a setting or something to have this checked with Login, or do I have to override the LoginAsync method to check for this automatically? I am just going by the example in the docs where it checks for all the different results.

Did I make a mistake somewhere? Sorry if this was covered before and I missed it in the search.

Thanks.

Showing 1 to 3 of 3 entries