本文整理汇总了C#中Microsoft.GetEvaluatedProperty方法的典型用法代码示例。如果您正苦于以下问题:C# Microsoft.GetEvaluatedProperty方法的具体用法?C# Microsoft.GetEvaluatedProperty怎么用?C# Microsoft.GetEvaluatedProperty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft
的用法示例。
在下文中一共展示了Microsoft.GetEvaluatedProperty方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: MSBuildConfiguration
public MSBuildConfiguration(MSBuildProject project, Microsoft.Build.BuildEngine.Project msproj, Configuration projectConfig)
: base(project)
{
_name = projectConfig.Name;
msproj.GlobalProperties.SetProperty("Configuration", _name);
project.SetPlatform (projectConfig.Platform);
_platform = msproj.GetEvaluatedProperty("Platform");
_relativeOutputDir = msproj.GetEvaluatedProperty("OutputPath");
if (!_relativeOutputDir.EndsWith(Path.DirectorySeparatorChar.ToString(CultureInfo.InvariantCulture))) {
_relativeOutputDir = _relativeOutputDir + Path.DirectorySeparatorChar;
}
_outputDir = new DirectoryInfo(FileUtils.CombinePaths(
project.ProjectDirectory.FullName,
_relativeOutputDir));
_objdir = new DirectoryInfo(msproj.GetEvaluatedProperty("IntermediateOutputPath"));
_outputType = GetType(msproj.GetEvaluatedProperty("OutputType"));
_asmname = msproj.GetEvaluatedProperty("AssemblyName");
}
示例2: GetBuildIntegrationInProject
internal static BuildIntegration GetBuildIntegrationInProject(Microsoft.Build.BuildEngine.Project project)
{
Param.AssertNotNull(project, "project");
ProjectUtilities.BuildIntegration setting = BuildIntegration.None;
if (project.Imports.Cast<Import>().Any(p => p.ProjectPath.IndexOf(StyleCopTargetsName, StringComparison.OrdinalIgnoreCase) != -1))
{
setting = BuildIntegration.TreatErrorAsWarning;
string property = project.GetEvaluatedProperty(StyleCopTreatErrorsAsWarnings);
bool treatAsWarnings;
if (bool.TryParse(property, out treatAsWarnings) && !treatAsWarnings)
{
setting = BuildIntegration.TreatErrorAsError;
}
}
return setting;
}