<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>SheepAspect</title><link>http://sheepaspect.codeplex.com/project/feeds/rss</link><description>SheepAspect &amp;#40;formerly known as SheepAop&amp;#41; is an AOP tool for the .NET platform, inspired by AspectJ.   It uses IL weaving to inject croscutting concerns to your dll at compile time. &amp;#40;Soon, SheepAOP will also support IL weaving at assembly load-time as an alternative, leaving original dll intact&amp;#41;</description><item><title>New Post: SheepAspect + ILMerge</title><link>http://sheepaspect.codeplex.com/discussions/442889</link><description>&lt;div style="line-height: normal;"&gt;I tried ILMerging SheepAspect, SheepAspect.Tasks, Antlr.. and dependencies together into one combined assembly and found that the PostCompileWeave Task did not weave in the aspects. I did not look too deeply into why this was the case. Incidentally in my case I was trying to do this to avoid a clash between Sheep's dependency on Antlr 3.3.... and another project having a dependency on Antlr 3.2..... I did a quick test with ILMerge and gave up when the aspects were not woven to look at other workarounds.&lt;br /&gt;
&lt;br /&gt;
Hope this helps.&lt;br /&gt;
&lt;/div&gt;</description><author>winsto</author><pubDate>Sat, 11 May 2013 19:53:32 GMT</pubDate><guid isPermaLink="false">New Post: SheepAspect + ILMerge 20130511075332P</guid></item><item><title>New Post: Getting 'value' in around property setter advice</title><link>http://sheepaspect.codeplex.com/discussions/430170</link><description>&lt;div style="line-height: normal;"&gt;David,&lt;br /&gt;
&lt;br /&gt;
I know this is a late response, but I came across your question whilst working out Around Property advice with Sheep myself. So maybe my response can help someone.&lt;br /&gt;
&lt;br /&gt;
I believe the parameter 'value' to be used in the property 'Set' is in the Args array jp.Args[0] if you need access to it. To have it set just call jp.Execute.&lt;br /&gt;
&lt;br /&gt;
Incidentally accessing the current property as you do above in  'Getter' around advice (I know you are not doing this, but in case it helps others as I didn't spot this at first) will result in a StackOverflowException as the 'Getter' advice will just be repeatedly, recursively called.&lt;br /&gt;
&lt;/div&gt;</description><author>winsto</author><pubDate>Sat, 11 May 2013 19:46:54 GMT</pubDate><guid isPermaLink="false">New Post: Getting 'value' in around property setter advice 20130511074654P</guid></item><item><title>New Post: SheepAspect + ILMerge</title><link>http://sheepaspect.codeplex.com/discussions/442889</link><description>&lt;div style="line-height: normal;"&gt;I personally have not tried ILMerging any SheepAspect project, but in theory I can't see any reason why it would be different. Just to check, does the SampleAspect produce any output without ILMerge?&lt;br /&gt;
&lt;/div&gt;</description><author>hendryluk</author><pubDate>Thu, 09 May 2013 13:36:49 GMT</pubDate><guid isPermaLink="false">New Post: SheepAspect + ILMerge 20130509013649P</guid></item><item><title>New Post: SheepAspect + ILMerge</title><link>http://sheepaspect.codeplex.com/discussions/442889</link><description>&lt;div style="line-height: normal;"&gt;Is it possible to use ILMerge and SheepAspect together? I want to have one assembly for my aspect oriented library (AOP.dll). Here is my current post-build on my project:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;$(SolutionDir)packages\ilmerge.2.13.0307\ilmerge.exe&amp;quot; /target:library /out:&amp;quot;$(TargetDir)AOP.dll&amp;quot; &amp;quot;$(TargetDir)AOPTemp.dll&amp;quot; &amp;quot;$(TargetDir)Antlr3.Runtime.dll&amp;quot; &amp;quot;$(TargetDir)Mono.Cecil.dll&amp;quot; &amp;quot;$(TargetDir)Mono.Cecil.mdb.dll&amp;quot; &amp;quot;$(TargetDir)Mono.Cecil.pdb.dll&amp;quot; &amp;quot;$(TargetDir)Mono.Cecil.rocks.dll&amp;quot; &amp;quot;$(TargetDir)SheepAspect.dll&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The command completes successfully and the merged dll is created; however, when I run my sample application, the SampleAspect does not produce any output. Any suggestions?&lt;br /&gt;
&lt;/div&gt;</description><author>adamjohnson</author><pubDate>Wed, 08 May 2013 01:19:55 GMT</pubDate><guid isPermaLink="false">New Post: SheepAspect + ILMerge 20130508011955A</guid></item><item><title>New Post: SheepAspect SelectConstructors SAQL Syntax Help!!..</title><link>http://sheepaspect.codeplex.com/discussions/442806</link><description>&lt;div style="line-height: normal;"&gt;Hi hendryluk ,&lt;br /&gt;
I have posted a similar question in issue tracker,(just moving it to discussion) to get a feasible solution&lt;br /&gt;
&lt;a href="https://sheepaspect.codeplex.com/workitem/10947" rel="nofollow"&gt;Issue tracker link&lt;/a&gt;&lt;br /&gt;
I have tried your solution with 'SelectConstructors' ,but with no success and i will be listing the options I have tried so far.&lt;br /&gt;
Can you help me on that?&lt;br /&gt;
&lt;h1&gt;Code&lt;/h1&gt;
&lt;pre&gt;&lt;code&gt;class Program
    {
        static void Main()
        {
            

            StreamWriter sw = new StreamWriter(@&amp;quot;E:\AOP\sheepaspect-76419\SheepAspectCompiler\bin\Debug\Test\sample.txt&amp;quot;);

            Console.ReadLine();
        }
}&lt;/code&gt;&lt;/pre&gt;

&lt;h1&gt;Aspect Defintion&lt;/h1&gt;
&lt;pre&gt;&lt;code&gt;SelectConstructors(&amp;quot;InType:'System.IO.StreamWriter'&amp;quot;)]
        public void StreamWriterCreate()
        { }
        [Around(&amp;quot;StreamWriterCreate&amp;quot;)]
         public void DemoAdvice2(CallMethodJointPoint    jp)
        {
            Console.WriteLine(&amp;quot;Checking constructor aspect&amp;quot;, jp.This );
            
        }
        &lt;/code&gt;&lt;/pre&gt;

YI: I have tried query with SAQL Query Analyser,but with no success.&lt;br /&gt;
&lt;br /&gt;
Can you please let me know how to do the above aspect process(since in critical time frame to do it).&lt;br /&gt;
&lt;br /&gt;
Looking forward for your reply&lt;br /&gt;
Regards,&lt;br /&gt;
Murugan&lt;br /&gt;
&lt;/div&gt;</description><author>Muruganalagesan</author><pubDate>Tue, 07 May 2013 13:30:25 GMT</pubDate><guid isPermaLink="false">New Post: SheepAspect SelectConstructors SAQL Syntax Help!!.. 20130507013025P</guid></item><item><title>Commented Issue: SheepAspect SelectConstructors SAQL Syntax [10947]</title><link>http://sheepaspect.codeplex.com/workitem/10947</link><description>Hi Henry,&lt;br /&gt;Is it possible to apply aspect for constructors using sheep aspect&amp;#63; If possible please provide me examples SAQL syntax for me&lt;br /&gt;&lt;br /&gt;__Examples&amp;#58;__&lt;br /&gt;StreamWriter sw&amp;#61; New StreamWriter&amp;#40;&amp;#34;some path&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt; Please provide SAQL for the above. so that i can use it as a template...&lt;br /&gt;&lt;br /&gt;Looking forward to hear from you...&lt;br /&gt;Comments: ** Comment from web user: Muruganalagesan ** &lt;p&gt;Hi hendryluk ,&lt;br&gt;Thanks for your speedy response.&lt;br&gt;I have tried your solution with 'SelectConstructors' ,but with no success and i will be listing the options I have tried so far.&lt;br&gt;Can you help me on that?&lt;/p&gt;&lt;p&gt;* __MyProgram Class:__&lt;/p&gt;&lt;p&gt;```&lt;br&gt;class Program&lt;br&gt;    {&lt;br&gt;        static void Main()&lt;br&gt;        {&lt;br&gt;            &lt;/p&gt;&lt;p&gt;            StreamWriter sw = new StreamWriter(@&amp;quot;E:\AOP\sheepaspect-76419\SheepAspectCompiler\bin\Debug\Test\sample.txt&amp;quot;);&lt;/p&gt;&lt;p&gt;            Console.ReadLine();&lt;br&gt;        }&lt;br&gt;}&lt;br&gt;```&lt;br&gt;============================================================&lt;br&gt;* __My Aspect Definition:__&lt;/p&gt;&lt;p&gt;```&lt;br&gt;[SelectConstructors(&amp;quot;InType:'System.IO.StreamWriter'&amp;quot;)]&lt;br&gt;        public void StreamWriterCreate()&lt;br&gt;        { }&lt;br&gt;        [Around(&amp;quot;StreamWriterCreate&amp;quot;)]&lt;br&gt;         public void DemoAdvice2(CallMethodJointPoint    jp)&lt;br&gt;        {&lt;br&gt;            Console.WriteLine(&amp;quot;Checking constructor aspect&amp;quot;, jp.This );&lt;br&gt;            &lt;br&gt;        }&lt;br&gt;```&lt;/p&gt;&lt;p&gt;FYI: I have tried query with SAQL Query Analyser,but with no success.&lt;/p&gt;&lt;p&gt;Can you please let me know how to do the above aspect process(since in critical time frame to do it).&lt;/p&gt;&lt;p&gt;Looking forward for your reply&lt;br&gt;Regards,&lt;br&gt;Murugan&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><author>Muruganalagesan</author><pubDate>Thu, 25 Apr 2013 07:24:26 GMT</pubDate><guid isPermaLink="false">Commented Issue: SheepAspect SelectConstructors SAQL Syntax [10947] 20130425072426A</guid></item><item><title>Commented Issue: SheepAspect SelectConstructors SAQL Syntax [10947]</title><link>http://sheepaspect.codeplex.com/workitem/10947</link><description>Hi Henry,&lt;br /&gt;Is it possible to apply aspect for constructors using sheep aspect&amp;#63; If possible please provide me examples SAQL syntax for me&lt;br /&gt;&lt;br /&gt;__Examples&amp;#58;__&lt;br /&gt;StreamWriter sw&amp;#61; New StreamWriter&amp;#40;&amp;#34;some path&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt; Please provide SAQL for the above. so that i can use it as a template...&lt;br /&gt;&lt;br /&gt;Looking forward to hear from you...&lt;br /&gt;Comments: ** Comment from web user: hendryluk ** &lt;p&gt;Yes, there's a [SelectConstuctor] attribute which works almost exactly as a [SelectMethod] attribute (i.e. it accepts the same SAQL syntax).&lt;br&gt;So in your instance: [SelectConstructor(&amp;quot;InType: System.Io.StreamWriter&amp;quot;)]&lt;/p&gt;</description><author>hendryluk</author><pubDate>Thu, 25 Apr 2013 02:01:56 GMT</pubDate><guid isPermaLink="false">Commented Issue: SheepAspect SelectConstructors SAQL Syntax [10947] 20130425020156A</guid></item><item><title>Created Issue: SheepAspect SelectConstructors SAQL Syntax [10947]</title><link>http://sheepaspect.codeplex.com/workitem/10947</link><description>Hi Henry,&lt;br /&gt;Is it possible to apply aspect for constructors using sheep aspect&amp;#63; If possible please provide me examples SAQL syntax for me&lt;br /&gt;&lt;br /&gt;__Examples&amp;#58;__&lt;br /&gt;StreamWriter sw&amp;#61; New StreamWriter&amp;#40;&amp;#34;some path&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt; Please provide SAQL for the above. so that i can use it as a template...&lt;br /&gt;&lt;br /&gt;Looking forward to hear from you...&lt;br /&gt;</description><author>Muruganalagesan</author><pubDate>Wed, 24 Apr 2013 14:55:45 GMT</pubDate><guid isPermaLink="false">Created Issue: SheepAspect SelectConstructors SAQL Syntax [10947] 20130424025545P</guid></item><item><title>Commented Issue: SheepAspect won't do postcompile weaving in TeamCity build [9402]</title><link>http://sheepaspect.codeplex.com/workitem/9402</link><description>When we are building locally SheepAspect works like a charm, but when we build via TeamCity we get the following error&amp;#58;&lt;br /&gt;-----&lt;br /&gt;D&amp;#58;&amp;#92;TCData&amp;#92;Work&amp;#92;e78aa496ea756bf6&amp;#92;packages&amp;#92;SheepAspect.0.2.0.1&amp;#92;tools&amp;#92;SheepAspect.targets&amp;#40;4, 5&amp;#41;&amp;#58; System.NullReferenceException&amp;#58; Object reference not set to an instance of an object.&lt;br /&gt;   at SheepAspect.Tasks.PostCompileWeaveTask.Execute&amp;#40;&amp;#41;&lt;br /&gt;Comments: ** Comment from web user: hendryluk ** &lt;p&gt;Hi,&lt;br&gt;I can't seem to replicate the same error in TeamCity.&lt;br&gt;What build method do you use in TC? &lt;br&gt;I use sln build against this public repository: https://github.com/hendryluk/SheepAspectPlay, and it seems to build successfully on TC.&lt;br&gt;Is there anything specific with your TeamCity build configuration?&lt;br&gt;Otherwise maybe you can try using your TC configuration against https://github.com/hendryluk/SheepAspectPlay to test?&lt;br&gt;Please let me know how it goes.&lt;br&gt;&lt;/p&gt;</description><author>hendryluk</author><pubDate>Thu, 11 Apr 2013 08:04:06 GMT</pubDate><guid isPermaLink="false">Commented Issue: SheepAspect won't do postcompile weaving in TeamCity build [9402] 20130411080406A</guid></item><item><title>Commented Issue: SheepAspect won't do postcompile weaving in TeamCity build [9402]</title><link>http://sheepaspect.codeplex.com/workitem/9402</link><description>When we are building locally SheepAspect works like a charm, but when we build via TeamCity we get the following error&amp;#58;&lt;br /&gt;-----&lt;br /&gt;D&amp;#58;&amp;#92;TCData&amp;#92;Work&amp;#92;e78aa496ea756bf6&amp;#92;packages&amp;#92;SheepAspect.0.2.0.1&amp;#92;tools&amp;#92;SheepAspect.targets&amp;#40;4, 5&amp;#41;&amp;#58; System.NullReferenceException&amp;#58; Object reference not set to an instance of an object.&lt;br /&gt;   at SheepAspect.Tasks.PostCompileWeaveTask.Execute&amp;#40;&amp;#41;&lt;br /&gt;Comments: ** Comment from web user: swingsetacid ** &lt;p&gt;We're getting a similar issue when running in TeamCity.  Builds work fine locally, but don't on the build agent.  Below are the exception and fusion loader logs.  It looks like the loader is attempting to load SheepAspect from the Tools directory, not the Lib directory.  Anyone else experiencing the same issue?&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;p&gt;------------------------------&lt;br&gt;System.IO.FileNotFoundException: Could not load file or assembly 'SheepAspect, Version=0.3.0.11, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.&lt;br&gt;File name: 'SheepAspect, Version=0.3.0.11, Culture=neutral, PublicKeyToken=null'&lt;br&gt;   at SheepAspect.Tasks.AppDomainIsolatedDiscoveryRunner.Process(String configFile, TaskLoggingHelper logger, String[]&amp;amp; weavedFiles)&lt;br&gt;   at SheepAspect.Tasks.PostCompileWeaveTask.Execute()&lt;/p&gt;&lt;p&gt;Assembly manager loaded from:  C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clr.dll&lt;br&gt;Running under executable  C:\Windows\Microsoft.NET\Framework64\v4.0.30319\MSBuild.exe&lt;br&gt;--- A detailed error log follows. &lt;/p&gt;&lt;p&gt;=== Pre-bind state information ===&lt;br&gt;LOG: DisplayName = SheepAspect, Version=0.3.0.11, Culture=neutral, PublicKeyToken=null&lt;br&gt; (Fully-specified)&lt;br&gt;LOG: Appbase = file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/&lt;br&gt;LOG: Initial PrivatePath = NULL&lt;br&gt;Calling assembly : SheepAspect.Tasks, Version=0.3.0.11, Culture=neutral, PublicKeyToken=null.&lt;br&gt;===&lt;br&gt;LOG: This bind starts in LoadFrom load context.&lt;br&gt;WRN: Native image will not be probed in LoadFrom context. Native image will only be probed in default load context, like with Assembly.Load().&lt;br&gt;LOG: Using application configuration file: C:\Windows\Microsoft.NET\Framework64\v4.0.30319\MSBuild.exe.Config&lt;br&gt;LOG: Using host configuration file: &lt;br&gt;LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework64\v4.0.30319\config\machine.config.&lt;br&gt;LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).&lt;br&gt;LOG: Attempting download of new URL file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/SheepAspect.DLL.&lt;br&gt;LOG: Attempting download of new URL file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/SheepAspect/SheepAspect.DLL.&lt;br&gt;LOG: Attempting download of new URL file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/SheepAspect.EXE.&lt;br&gt;LOG: Attempting download of new URL file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/SheepAspect/SheepAspect.EXE.&lt;br&gt;LOG: Attempting download of new URL file:///C:/TeamCity/buildAgent/work/f957c9968fa39b59/WTL/packages/SheepAspect.0.3.0.11/Tools/SheepAspect.DLL.&lt;br&gt;LOG: Attempting download of new URL file:///C:/TeamCity/buildAgent/work/f957c9968fa39b59/WTL/packages/SheepAspect.0.3.0.11/Tools/SheepAspect/SheepAspect.DLL.&lt;br&gt;LOG: Attempting download of new URL file:///C:/TeamCity/buildAgent/work/f957c9968fa39b59/WTL/packages/SheepAspect.0.3.0.11/Tools/SheepAspect.EXE.&lt;br&gt;LOG: Attempting download of new URL file:///C:/TeamCity/buildAgent/work/f957c9968fa39b59/WTL/packages/SheepAspect.0.3.0.11/Tools/SheepAspect/SheepAspect.EXE.&lt;br&gt;&lt;/p&gt;</description><author>swingsetacid</author><pubDate>Wed, 10 Apr 2013 22:46:11 GMT</pubDate><guid isPermaLink="false">Commented Issue: SheepAspect won't do postcompile weaving in TeamCity build [9402] 20130410104611P</guid></item><item><title>Patch Applied: #11884</title><link>http://sheepaspect.codeplex.com/SourceControl/list/patches</link><description>
&lt;p&gt;&lt;a href='http://www.codeplex.com/site/users/view/hendryluk'&gt;hendryluk&lt;/a&gt; has applied patch #11884.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Comment:&lt;/b&gt;&lt;br /&gt;A different method of creating AppDomain has been applied to address this issue.&lt;/p&gt;</description><author>hendryluk</author><pubDate>Thu, 28 Mar 2013 03:57:55 GMT</pubDate><guid isPermaLink="false">Patch Applied: #11884 20130328035755A</guid></item><item><title>New Post: SheepAspect - cool project, unfortunately currently not usuable.</title><link>http://sheepaspect.codeplex.com/discussions/437697</link><description>&lt;div style="line-height: normal;"&gt;Yes the source-code on the repository is currently the same as the latest NuGet version.&lt;br /&gt;
&lt;/div&gt;</description><author>hendryluk</author><pubDate>Thu, 28 Mar 2013 03:18:25 GMT</pubDate><guid isPermaLink="false">New Post: SheepAspect - cool project, unfortunately currently not usuable. 20130328031825A</guid></item><item><title>Patch Applied: #13703</title><link>http://sheepaspect.codeplex.com/SourceControl/list/patches</link><description>
&lt;p&gt;&lt;a href='http://www.codeplex.com/site/users/view/hendryluk'&gt;hendryluk&lt;/a&gt; has applied patch #13703.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Comment:&lt;/b&gt;&lt;br /&gt;Patch applied. Thanks&lt;/p&gt;</description><author>hendryluk</author><pubDate>Wed, 27 Mar 2013 23:52:10 GMT</pubDate><guid isPermaLink="false">Patch Applied: #13703 20130327115210P</guid></item><item><title>New Post: SheepAspect - cool project, unfortunately currently not usuable.</title><link>http://sheepaspect.codeplex.com/discussions/437697</link><description>&lt;div style="line-height: normal;"&gt;Just one last question as it's not completely clear from the site - Is the source downloadable from here the &lt;strong&gt;latest version&lt;/strong&gt;? i.e. installing from NuGet results in same binaries as building the source downloaded from this site?&lt;br /&gt;
Thanks! &lt;br /&gt;
&lt;/div&gt;</description><author>avinamal</author><pubDate>Wed, 27 Mar 2013 23:46:12 GMT</pubDate><guid isPermaLink="false">New Post: SheepAspect - cool project, unfortunately currently not usuable. 20130327114612P</guid></item><item><title>New Post: SheepAspect - cool project, unfortunately currently not usuable.</title><link>http://sheepaspect.codeplex.com/discussions/437697</link><description>&lt;div style="line-height: normal;"&gt;Hi Avinamal.&lt;br /&gt;
Thanks for the efforts and the support. Feedbacks and bug reports from early adopters are very helpful for the project to gain maturity it desperately needs, so keep them coming :)&lt;br /&gt;
One potential issue I can see from your initial implementation (which may or may not be related to the issue you were having) is a possibility of StackOverflowException, i.e. if your class overrides the ToString() method, when your logging aspect make a ToString() invocation, it may trigger a further (undesired) logging. &lt;br /&gt;
Regarding the out (or ref) parameter, frankly it's one of the CLR features I have not really tested nor supported. I will definitely have a look into it, and add it to the bug-list if it's found to be broken (which i strongly suspect it is).&lt;br /&gt;
But in the meantime if you're having another issue or difficulty, please do give me a shout.&lt;br /&gt;
&lt;/div&gt;</description><author>hendryluk</author><pubDate>Wed, 27 Mar 2013 06:18:40 GMT</pubDate><guid isPermaLink="false">New Post: SheepAspect - cool project, unfortunately currently not usuable. 20130327061840A</guid></item><item><title>New Post: SheepAspect - cool project, unfortunately currently not usuable.</title><link>http://sheepaspect.codeplex.com/discussions/437697</link><description>&lt;div style="line-height: normal;"&gt;Dear Mr. Hendryluk,&lt;br /&gt;
&lt;br /&gt;
Thanks for the kind words, I'm ready to suffer to some extent if the final result will be using your project!&lt;br /&gt;
&lt;br /&gt;
I think I've found my bug and it has nothing to do with SheepAspect (I think).&lt;br /&gt;
The actual Exception was thrown on invoking public method with &lt;strong&gt;out&lt;/strong&gt; parameter.&lt;br /&gt;
I was trying to log jp.Args from my Aspect, and for some reason - an &lt;strong&gt;out&lt;/strong&gt; parameter throws a NullReferenceException on ToString() - even when it's clearly not null.&lt;br /&gt;
Another bug I had is not to exclude ToString() from the Aspect selection - I think that what made the exception a total CLR crash.&lt;br /&gt;
&lt;br /&gt;
Currently, just by adding &lt;strong&gt;&amp;amp; !Name: 'ToString'&lt;/strong&gt; to the attribute, and try-catching around &lt;strong&gt;String.Join(&amp;quot;,&amp;quot;, jp.Args)&lt;/strong&gt; - my problems are solved :-)&lt;br /&gt;
&lt;br /&gt;
Sorry for the harsh words with which I've opened this thread... That's just frustration speaking.&lt;br /&gt;
&lt;br /&gt;
Thanks and keep on the great job!&lt;br /&gt;
&lt;/div&gt;</description><author>avinamal</author><pubDate>Wed, 27 Mar 2013 05:47:03 GMT</pubDate><guid isPermaLink="false">New Post: SheepAspect - cool project, unfortunately currently not usuable. 20130327054703A</guid></item><item><title>New Post: SheepAspect - cool project, unfortunately currently not usuable.</title><link>http://sheepaspect.codeplex.com/discussions/437697</link><description>&lt;div style="line-height: normal;"&gt;Sorry for all the pain. Would you be able to send me some sample code? Im suspecting you may be touching specific areas that are not yet properly supported (such as weaving CLR events).&lt;br /&gt;
Cheers&lt;br /&gt;
&lt;/div&gt;</description><author>hendryluk</author><pubDate>Sun, 24 Mar 2013 22:01:41 GMT</pubDate><guid isPermaLink="false">New Post: SheepAspect - cool project, unfortunately currently not usuable. 20130324100141P</guid></item><item><title>New Post: SheepAspect - cool project, unfortunately currently not usuable.</title><link>http://sheepaspect.codeplex.com/discussions/437697</link><description>&lt;div style="line-height: normal;"&gt;I've tried to build a minimal Sheep app to demonstrate the crash, only it didn't crash. So calling a Fanc that accepts an interface, by itself, is not enough to reproduce the crash. I'm working with the sample Aspect BTW (just changed the returned value to object).&lt;br /&gt;
&lt;/div&gt;</description><author>avinamal</author><pubDate>Sat, 23 Mar 2013 01:25:37 GMT</pubDate><guid isPermaLink="false">New Post: SheepAspect - cool project, unfortunately currently not usuable. 20130323012537A</guid></item><item><title>New Post: SheepAspect - cool project, unfortunately currently not usuable.</title><link>http://sheepaspect.codeplex.com/discussions/437697</link><description>&lt;div style="line-height: normal;"&gt;I think I've ruled out x64/x86 mismatch as source of crash, as I've targeted all dependencies to x86 and &lt;em&gt;still&lt;/em&gt; crush on entering the Func.&lt;br /&gt;
Let's see if replacing the Func does the trick...&lt;br /&gt;
&lt;/div&gt;</description><author>avinamal</author><pubDate>Fri, 22 Mar 2013 22:50:23 GMT</pubDate><guid isPermaLink="false">New Post: SheepAspect - cool project, unfortunately currently not usuable. 20130322105023P</guid></item><item><title>New Post: SheepAspect - cool project, unfortunately currently not usuable.</title><link>http://sheepaspect.codeplex.com/discussions/437697</link><description>&lt;div style="line-height: normal;"&gt;I think I've ruled out x64/x86 mismatch as source of crash, as I've targeted all dependencies to x86 and &lt;em&gt;still&lt;/em&gt; crush on entering the Func.&lt;br /&gt;
Let's see if replacing the Func does the trick...&lt;br /&gt;
&lt;/div&gt;</description><author>avinamal</author><pubDate>Fri, 22 Mar 2013 22:24:35 GMT</pubDate><guid isPermaLink="false">New Post: SheepAspect - cool project, unfortunately currently not usuable. 20130322102435P</guid></item></channel></rss>