Browse Source

Added "*.targets" to rename script.

Steven Kirk 9 years ago
parent
commit
4ccc4ae789
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/avalonia-rename.ps1

+ 1 - 1
scripts/avalonia-rename.ps1

@@ -17,7 +17,7 @@ function Get-NewFileName {
 function Rename-Contents {
     param ([System.IO.FileInfo] $file)
 
-    $extensions = @(".cs",".xaml",".csproj",".sln",".md",".json",".yml",".partial",".ps1",".nuspec",".htm",".html",".gitmodules".".xml",".plist")
+    $extensions = @(".cs",".xaml",".csproj",".sln",".md",".json",".yml",".partial",".ps1",".nuspec",".htm",".html",".gitmodules".".xml",".plist",".targets")
 
     if ($extensions.Contains($file.Extension)) {
         $text = [IO.File]::ReadAllText($file.FullName)