change Dictionary<string, string> to var
This commit is contained in:
parent
b566be5de8
commit
5d1c908d49
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ namespace Microsoft.DotNet.Tools.Init
|
|||
where resourceName.ToLowerInvariant().EndsWith(".cs") || resourceName.ToLowerInvariant().EndsWith(".json")
|
||||
select resourceName;
|
||||
|
||||
Dictionary<string, string> resourceNameToFileName = new Dictionary<string, string>();
|
||||
var resourceNameToFileName = new Dictionary<string, string>();
|
||||
bool hasFilesToOverride = false;
|
||||
foreach (string resourceName in resources)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue