What problem does it solve?
This Skill provides essential guidance and best practices for developing and maintaining projects within the .NET Framework ecosystem, addressing its unique project structure, language version limitations, and package management nuances.
Core Features & Use Cases
- Project Structure Guidance: Understand the differences between legacy .NET Framework project files (
.csproj) and modern SDK-style projects, including explicit file inclusion and build configurations.
- NuGet Management: Learn the limitations and recommended procedures for managing NuGet packages in .NET Framework projects.
- C# Version Constraints: Adhere to the C# 7.3 language version, avoiding newer features that are not supported.
- Environment-Specific Best Practices: Follow Windows-specific path conventions and command considerations.
- Common Pitfalls: Avoid deadlocks with async/await, handle
DateTime correctly, optimize string operations, and manage memory efficiently.
- Use Case: A developer is tasked with updating a legacy .NET Framework application and needs to understand the specific build requirements, C# version limitations, and best practices for async operations to avoid common pitfalls.
Quick Start
Consult the documentation for guidance on building .NET Framework projects and managing NuGet packages.