From 2b7c66b606705eb474a10cf799ff82bede110eff Mon Sep 17 00:00:00 2001 From: Ed Ball Date: Mon, 25 Nov 2024 20:07:15 -0800 Subject: [PATCH] Publish 1.3.0: Add .cshtml, .css, .razor. --- Directory.Build.props | 2 +- ReleaseNotes.md | 4 ++++ src/FindReplaceCode/ProgramSettings.cs | 3 +++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index 5993528..da1ec98 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,7 +1,7 @@ - 1.2.0 + 1.3.0 12.0 enable enable diff --git a/ReleaseNotes.md b/ReleaseNotes.md index b21a2b1..99793ab 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,5 +1,9 @@ # Release Notes +## 1.3.0 + +* Find and replace `.cshtml`, `.css`, and `.razor` files. + ## 1.2.0 * Find and replace `.yaml` files. diff --git a/src/FindReplaceCode/ProgramSettings.cs b/src/FindReplaceCode/ProgramSettings.cs index 9f22979..751e813 100644 --- a/src/FindReplaceCode/ProgramSettings.cs +++ b/src/FindReplaceCode/ProgramSettings.cs @@ -8,7 +8,9 @@ public static class ProgramSettings ".cake", ".config", ".cs", + ".cshtml", ".csproj", + ".css", ".fsd", ".html", ".js", @@ -19,6 +21,7 @@ public static class ProgramSettings ".proto", ".ps1", ".py", + ".razor", ".settings", ".sln", ".ts",