Tag: dotnet
All the articles with the tag "dotnet".
-
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.
-
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.
-
My recent open-source activity
Summary of contributions to GitExtensions, Monodevelop, jHtmlArea, T4 TransformOnBuild, and posh-git.
-
git bisect - first time usage impression
First hands-on experience with git bisect to locate a regression in an ASP.NET WebForms GridView rendering bug.
-
Get EXIF metadata with PowerShell
Reading EXIF tags such as date-taken from images in PowerShell using System.Drawing.Image.
-
PowerShell and IDisposable
Implementing a PSUsing helper function in PowerShell that mimics C# using blocks for IDisposable objects.
-
Coding Standards document
A concise C# coding standards document with ReSharper configuration, covering access modifiers, var usage, and best practices.
-
My NUnit pull request accepted
Announcement that a NUnit pull request fixing invalid XML character handling was merged and referenced in NUnit source code.
-
PowerShell Start-Process WTF
Documents a known PowerShell bug where Start-Process -PassThru does not expose ExitCode, with a workaround using Process.Start.
-
PowerShell .NET property access swallows exceptions
Demonstrates that PowerShell silently returns null when a .NET property getter throws an exception, and how to avoid it.