Skip to content
This repository has been archived by the owner on Oct 4, 2021. It is now read-only.

Commit

Permalink
[Core] Make part of Project API internal not protected
Browse files Browse the repository at this point in the history
Project.CreateProjectInstanceForConfigurationAsync does not need to
be protected since it is only used with MonoDevelop.Core.
  • Loading branch information
mrward committed Aug 5, 2019
1 parent 14f4a2e commit 6fd0ba0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2932,14 +2932,14 @@ ProjectConfiguration LoadConfiguration (ProgressMonitor monitor, ConfigData cgrp
return config;
}

protected internal MSBuildProjectInstance CreateProjectInstanceForConfiguration (string conf, string platform, string framework = null, bool onlyEvaluateProperties = true)
internal MSBuildProjectInstance CreateProjectInstanceForConfiguration (string conf, string platform, string framework = null, bool onlyEvaluateProperties = true)
{
var pi = PrepareProjectInstanceForConfiguration (conf, platform, framework, onlyEvaluateProperties);
pi.Evaluate ();
return pi;
}

protected internal async Task<MSBuildProjectInstance> CreateProjectInstanceForConfigurationAsync (string conf, string platform, string framework, bool onlyEvaluateProperties = true)
internal async Task<MSBuildProjectInstance> CreateProjectInstanceForConfigurationAsync (string conf, string platform, string framework, bool onlyEvaluateProperties = true)
{
var pi = PrepareProjectInstanceForConfiguration (conf, platform, framework, onlyEvaluateProperties);
await pi.EvaluateAsync ();
Expand Down

0 comments on commit 6fd0ba0

Please sign in to comment.