ワンクリックで
normalize-line-endings
Execute a C# script to normalize line endings in files within a specified directory.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Execute a C# script to normalize line endings in files within a specified directory.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Full Sentry SDK setup for .NET. Use when asked to "add Sentry to .NET", "install Sentry for C#", or configure error monitoring, tracing, profiling, logging, or crons for ASP.NET Core, MAUI, WPF, WinForms, Blazor, Azure Functions, or any other .NET application.
Use ilspycmd to locate, decompile, and inspect external .NET library method or type implementations that are not present in the current repository. Use when you needs to trace a call into a NuGet package, framework assembly, or other referenced DLL; resolve which external assembly contains a symbol; or explain external behavior from decompiled code.
Locate and inspect WinUI 3 default styles in Microsoft.WindowsAppSDK.WinUI generic.xaml files from the local NuGet package cache. Use when you needs to find default WinUI control templates, theme resources, VisualState definitions, style setters, or compare app XAML against WinUI's packaged generic.xaml.
| name | normalize-line-endings |
| description | Execute a C# script to normalize line endings in files within a specified directory. |
Different agent prefer different line endings (LF vs CRLF). This script helps ensure that all files in a directory have consistent line endings, which can be important for version control.
You may run a simple C# script that recursively traverses the specified directory for files and normalizes the line endings of each file using String.ReplaceLineEndings().
The script is inside ./scripts/normalize.cs and can be run in most CLI environments.
It is generally acceptable to use a broader directory scope than you expect, since the script only modifies files with inconsistent line endings.
Run in PowerShell:
dotnet run .\normalize.cs -- <target path>
Example:
dotnet run .\normalize.cs -- C:\Projects\MySolution