change Dictionary<string, string> to var

This commit is contained in:
Krzysztof Wicher 2015-11-17 10:22:26 -08:00
parent b566be5de8
commit 5d1c908d49

View file

@ -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)
{