Cauldron icon indicating copy to clipboard operation
Cauldron copied to clipboard

C# Toolkit

Results 24 Cauldron issues
Sort by recently updated
recently updated
newest added

I have problems compiling a project using these weavers from command line: With visual studio: ``` 1>Target FodyTarget: 1> Fody: Fody (version 3.2.10.0) Executing 1> Fody: ProjectDirectory: 'C:\Repos\PlatformMicroServicePrototype\Platform\Logger'. 1> Fody:...

Cauldron.Interception.Fody crashed when building my .NET5 class lib project. Could you please tell me workaround? 1> Fody/Cauldron.Interception: zanac.MAmidiMEmo.Gui.FMEditor.FormDownloadTone.resources Embedded 1>MSBUILD : error : Fody: An unhandled exception occurred: 1>MSBUILD :...

So, I've added Cauldron.Interceptors.Fody 3.2.3 and Fody 4.2.1 (I'm still using MSBuild 15) to my project via Nuget. My `FodyWeavers.xml` file looks like: ```xhtml ``` However, when I try to...

Debug breakpoint not working in the methods for which Interceptor attribute is applied. when i tried to enter the method in debug mode it shows error as, ![interceptor2](https://user-images.githubusercontent.com/59611026/88962078-8cbeed80-d2c3-11ea-8541-ada27f80eff8.png) Kindly help....

The nuget package "Capgemini.Cauldron.Cryptography" came to my attention. With around 30k downloads I was curious and did take a look. I really would like some feedback on my thoughts/ideas. ##...

Hello, Using nuget to install gives error: Install-Package : External packages cannot depend on packages that target projects.

After installing cauldron via nuget package management in VS2017 there do not seem to be any references added to the solution which in turn means that using Cauldron.Interception does not...

Why no nuget package on the timecache attribute ???

Hi all, I could not find the information in the wiki so I'm asking here. I created a small Property Attribute to intercept Properties : ```C# [AttributeUsage(AttributeTargets.Property)] public sealed class...

I have nullable property ``` [MyAttribute] public int? NullableProperty { get; set; } ``` with simple attribute ``` public class MyAttribute : Attribute, IPropertyInterceptor { public void OnGet(PropertyInterceptionInfo propertyInterceptionInfo, object...