fix camelcasing

This commit is contained in:
Shayne Boyer 2017-02-16 17:14:54 -05:00
parent c9fa9be412
commit 14f43ef896
2 changed files with 2 additions and 2 deletions

View file

@ -174,7 +174,7 @@ namespace Microsoft.DotNet.Tools
return false;
}
public bool IstargetingFramework(NuGetFramework framework)
public bool IsTargetingFramework(NuGetFramework framework)
{
foreach (var tfm in GetTargetFrameworks())
{

View file

@ -74,7 +74,7 @@ namespace Microsoft.DotNet.Tools.Add.ProjectToProjectReference
else
{
var framework = NuGetFramework.Parse(frameworkString);
if (!msbuildProj.IstargetingFramework(framework))
if (!msbuildProj.IsTargetingFramework(framework))
{
Reporter.Error.WriteLine(string.Format(
CommonLocalizableStrings.ProjectDoesNotTargetFramework,