pamidur / aspect-injector

AOP framework for .NET (c#, vb, etc)
Apache License 2.0
745 stars 112 forks source link

Getting Errors when Compiling Source Code in Visual Studio 2019 #133

Closed ittyabrehman closed 4 years ago

ittyabrehman commented 4 years ago

Hi pamidur ! first of all thanks a lot for designing such a great aop solution. I just fork your source code and i am getting errors when hit to build solution. Below screenshot of some errors. image

pamidur commented 4 years ago

Hi @ittyabrehman , well I guess it is time for me to write a CONTRIBUTION GUIDE :)

In order to build app you need to initialize FluentIL submodule with

git submodule init

I'm not sure but you may need additionally change the submodule url in .gitmodules from ssh git@github.com:pamidur/fluent-il.git to https https://github.com/pamidur/fluent-il

I have moved code responsible for low level CIL manipulation into another lib because I want to reuse it another project, but have not made it a nuget package yet.

Let me know if you have already done submodule init and still face the same issue

ittyabrehman commented 4 years ago

@pamidur Issue resolved. Thanks for your guidance