Base solution for your next web application
Open Closed

How to Debug ABP Source #1930


User avatar
0
marcosli created

Is there any way to debug the abp 1.x.x.x ? I tried to do the following:

  1. Remove the assemblies that were added to a project using nuget
  2. Add the abp.xproj's to the solution
  3. Add the abp.xproj's references to my test application project.
  4. and tried to built it.

But looks like VS is not allowing to use the namespaces of abp source in the project.

Am i doing something wrong? Or is that not possible?

Thanks!


4 Answer(s)
  • User Avatar
    0
    yamaguchi created

    I'm using ASP.NET Core template. I'm not sure this way will help you,because i'm programming beginner. But I'll show you how I do to debug.

    1.Clone the source which you want to debug from GitHub.

    2.Place source on a neighboring folder outside the solution.

    3.Edit global.json like below.

    {
      "projects": [ "src", "test","../aspnetboilerplate-master/src" //This is example.Write your relative path.],
      "sdk": {
        "version": "1.0.0-preview2-003121"
      }
    }
    

    Will this way help you?

  • User Avatar
    0
    marcosli created

    In my case i'm using the ASP.NET MVC 5.x & Angularjs 1.x template, so i guess it will be different to debug and add references to the abp assemblies

  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi,

    For non ASPNET Core projects, please see #1296@e07655d4-f07a-4387-b073-86202354984a

  • User Avatar
    0
    mdepouw created

    Articles Tutorials | AspNet Boilerplate: configuring debugging in Visual Studio