nanoFramework GitHub PR analysis

The .NET nanoFramework GitHub organization has 97 public repositories. While I am a huge fan of mono-repositories, I joined the project when there were already too many repositories to move to a mono-repository. It may happen in the future, who knows, but in the meantime, we're happy with our 97 repositories. They generate 230 nuget … Continue reading nanoFramework GitHub PR analysis

Custom attributes with constructor

Yes, you read that correctly! nanoFramework just got support for these. You can now have custom attributes with a constructor and access the value on the constructor. Let's see some code to illustrate this. Consider these two classes defining attributes. public class AuthorAttribute : Attribute { private readonly string _author; public string Author => _author; … Continue reading Custom attributes with constructor

nanoFramework v1.0 is official!

Today we are proudly announcing the first official release of nanoFramework. What a journey we’ve made… for over two years now a lot of code has been written, tested, and rewritten. A lot of ideas were discussed, tested, reviewed, implemented and even scraped. We won’t bother you with statistics on the number of commits or … Continue reading nanoFramework v1.0 is official!

Obfuscation? We have an app for that!

If you are in the .NET world for long enough, you’ve probably have come across with the term obfuscation at some point. In a nutshell and paraphrasing Garry Trinder: “is the process of scrambling the symbols, code, and data of a program to prevent reverse engineering.” As most of us are aware there are several … Continue reading Obfuscation? We have an app for that!