Skip to content

1.16

Latest
Compare
Choose a tag to compare
@3F 3F released this 12 Dec 16:59
f4ad519
LSender 1.16. Public release

* FIXED: Fixed possible NullReferenceException when lambda, ~Anonymously Hosted DynamicMethods.

* NEW: Improved vector implementation which should be twice as fast as the original StackTrace instancing.

       Note the following,
       Actually it could be implemented even faster because only the vector matters in our case.
       This however is not trivial task due to some CLR protections such as
         ECall methods must be packaged into a system module when calling GetStackFramesInternal
         which in turn requires StackFrameHelper instance.
       That's why it's still wrapped inside StackFrameHelper class.

* CHANGED: Added LSR_FEATURE_S_VECTOR preprocessor directive to completely disable vectors
           if it is not planned to use.

* CHANGED: New project structure for distribution using source code
            which makes it easier to split the repeater within the domain.

        For example,
        ```
          <PropertyGroup>
            <LSenderExtIncSrc>..\LSender\src\</LSenderExtIncSrc>
            <DefineConstants>LSR_FEATURE_S_VECTOR;$(DefineConstants)</DefineConstants>
          </PropertyGroup>
          <Import Project="$(LSenderExtIncSrc)src.targets" />
        ```