Is there any way to debug the abp 1.x.x.x ? I tried to do the following:
- Remove the assemblies that were added to a project using nuget
- Add the abp.xproj's to the solution
- Add the abp.xproj's references to my test application project.
- 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)
-
0
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?
-
0
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
-
0
Hi,
For non ASPNET Core projects, please see #1296@e07655d4-f07a-4387-b073-86202354984a
-
0
Articles Tutorials | AspNet Boilerplate: configuring debugging in Visual Studio