Tag:visual-studio
All the articles with the tag "visual-studio".
Debug .NET IIS Application on Production - dnSpy!
dnSpy enables full debugging of a .NET IIS application on a production server without Visual Studio or the .NET Framework installed.
Best programming font - Source Code Pro
How to install and configure the Source Code Pro TTF font for consistent rendering across Visual Studio, Sublime Text, and ConEmu.
MSBuild custom task and assembly locks
Copying a custom MSBuild task assembly to a temp folder before loading it to prevent file locking after build.
Coding Standards document
A concise C# coding standards document with ReSharper configuration, covering access modifiers, var usage, and best practices.
The best debugging technique - inverse breakpoint
Using Debugger.Launch and Debugger.Break in C# code to attach a debugger to hard-to-reach processes like Visual Studio plugins.
Remote debugging over TeamViewer
Step-by-step guide to setting up Visual Studio remote debugging over a TeamViewer VPN connection.
T4 Assembly references for Design-time templates
Common patterns for referencing assemblies in T4 design-time templates using GAC paths, absolute paths, and MSBuild variables.
T4 Design-Time templates base class
How to create a shared custom base class for T4 design-time templates by extending TextTransformation, with a working example.
T4 Runtime Template and code-behind logic
How to add a code-behind partial class to a T4 runtime template by manually editing the csproj file, with a Visual Studio add-in.
T4 Runtime Templates Base Class
Demonstrates extracting T4 runtime template auto-generated base class into a shared reusable C# base class for all templates.