SharePoint Framework 1.10 continues to improve Teams integration and library component support. Here’s what’s new for SharePoint developers. What’s New Office UI Fabric React 7: Updated component library Teams Tab Improvements: Better theme support Library Components: Improved versioning Node 10/12 Support: Updated tooling compatibility Teams Theme Support Upgrade Steps References SPFx 1.10 Release Notes
Read more →Month: January 2020
C# 8.0: Nullable Reference Types in Practice
The “Billion Dollar Mistake” – the null reference – is finally being addressed in C# 8.0. Nullable Reference Types (NRT) are not just a compiler check; they are a fundamental shift in how we design software. Enabling NRT To enable it, add <Nullable>enable</Nullable> to your .csproj. Prepare for a sea of yellow warnings. Do not […]
Read more →C# 8.0: Nullable Reference Types in Practice
The “Billion Dollar Mistake”—null content—has plagued C# developers since version 1.0. NullReferenceException is the most common runtime error. C# 8.0 introduces Nullable Reference Types (NRT), a feature that moves null checking from runtime to compile time. This is not just a syntax change; it’s a fundamental shift in how we write safety-critical C# code. How […]
Read more →The State of .NET Core 3.1: Migration Guide for Enterprise
.NET Core 3.1 is the most significant Long Term Support (LTS) release for the platform to date. For enterprise teams still running on .NET Framework 4.8 or older .NET Core 2.x versions, 3.1 represents the standard for the next three years. This deep dive covers the architectural changes, migration strategies for large monolithic applications, and […]
Read more →