remove unused strings
This commit is contained in:
parent
e9bd472281
commit
792da5967e
|
@ -71,7 +71,7 @@ namespace MediaBrowser.Tests.ConsistencyTests
|
|||
/// <summary>
|
||||
/// List of file extension to search.
|
||||
/// </summary>
|
||||
public static string[] TargetExtensions = new[] { "js", "html" };
|
||||
public static string[] TargetExtensions = new[] { ".js", ".html" };
|
||||
|
||||
/// <summary>
|
||||
/// List of paths to exclude from search.
|
||||
|
@ -96,11 +96,11 @@ namespace MediaBrowser.Tests.ConsistencyTests
|
|||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void ReportStringUsage()
|
||||
{
|
||||
this.CheckDashboardStrings(false);
|
||||
}
|
||||
//[TestMethod]
|
||||
//public void ReportStringUsage()
|
||||
//{
|
||||
// this.CheckDashboardStrings(false);
|
||||
//}
|
||||
|
||||
[TestMethod]
|
||||
public void ReportUnusedStrings()
|
||||
|
@ -135,7 +135,7 @@ namespace MediaBrowser.Tests.ConsistencyTests
|
|||
|
||||
var allFiles = rootFolderInfo.GetFiles("*", SearchOption.AllDirectories);
|
||||
|
||||
var filteredFiles1 = allFiles.Where(f => TargetExtensions.Any(e => f.Name.EndsWith(e)));
|
||||
var filteredFiles1 = allFiles.Where(f => TargetExtensions.Any(e => string.Equals(e, f.Extension, StringComparison.OrdinalIgnoreCase)));
|
||||
var filteredFiles2 = filteredFiles1.Where(f => !ExcludePaths.Any(p => f.FullName.Contains(p)));
|
||||
|
||||
var selectedFiles = filteredFiles2.OrderBy(f => f.FullName).ToList();
|
||||
|
|
|
@ -65,6 +65,9 @@ EndProject
|
|||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Emby.Drawing", "Emby.Drawing\Emby.Drawing.csproj", "{08FFF49B-F175-4807-A2B5-73B0EBD9F716}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(Performance) = preSolution
|
||||
HasPerformanceSessions = true
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Debug|Mixed Platforms = Debug|Mixed Platforms
|
||||
|
|
Loading…
Reference in New Issue
Block a user