Puresharp icon indicating copy to clipboard operation
Puresharp copied to clipboard

Puresharp is a Framework that provides the essential APIs (AOP, IOC, etc...) to productively build high quality (.NET 4.5.2+ & .NET Core 2.1+) applications through reliability, scalability and perform...

Results 6 Puresharp issues
Sort by recently updated
recently updated
newest added

Puresharp advice is not working on .Net Core 3.1 They work fine on .Net Framework

The following error appears during building a project in VS: ``` 7>Unhandled Exception: Mono.Cecil.AssemblyResolutionException: Failed to resolve assembly: 'Microsoft.Rest.ClientRuntime, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' 7> at Mono.Cecil.BaseAssemblyResolver.Resolve(AssemblyNameReference name, ReaderParameters parameters) 7> at...

When I try to build and start my Asp.Net Web API, I get the error: ``` Unhandled Exception: System.ArgumentException: Value does not fall within the expected range. 1> at Mono.Cecil.Pdb.ISymUnmanagedWriter2.DefineLocalVariable2(String...

Hi everyone, Don't hesitate to leave me here some comments to encourage me... or not :) Just tell me what you want or need here about this project.

Discussion

IAdvice.Begin doesn't have method arguments Arguments needed for templates, such as ``` csharp [Log("My method: {value}")] void MyMethod(string value); ``` IAdvice.Begin can be ``` csharp void Begin(object[] args); ```

When I pass a .NET Core 2.2 exe to IPuresharp, it fails if the exe has async methods that contain certain constructs: ```csharp using System; using System.Threading.Tasks; namespace AsyncWeavingTest {...