本文整理汇总了C#中Microsoft.Build.BuildEngine.Project.MarkProjectAsDirty方法的典型用法代码示例。如果您正苦于以下问题:C# Project.MarkProjectAsDirty方法的具体用法?C# Project.MarkProjectAsDirty怎么用?C# Project.MarkProjectAsDirty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.Build.BuildEngine.Project
的用法示例。
在下文中一共展示了Project.MarkProjectAsDirty方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: DirtyAndBuildInDifferentCurrentDirectory
/// <summary>
/// Dirties the project, changes the current directory, and builds it.
/// </summary>
private void DirtyAndBuildInDifferentCurrentDirectory(Project project)
{
string currentDirectory = Environment.CurrentDirectory;
try
{
project.MarkProjectAsDirty();
// Make sure that the current directory isn't the project directory somehow
Environment.CurrentDirectory = Environment.SystemDirectory;
project.Build();
}
finally
{
Environment.CurrentDirectory = currentDirectory;
}
}
示例2: MarkProjectAsDirty_False
public void MarkProjectAsDirty_False()
{
Project p = new Project(new Engine());
p.MarkProjectAsDirty();
Assertion.AssertEquals(true, p.IsDirty);
string projectPath = String.Empty;
try
{
projectPath = ObjectModelHelpers.CreateTempFileOnDisk(TestData.Content3SimpleTargetsDefaultSpecified);
p.Load(projectPath);
Assertion.AssertEquals(false, p.IsDirty);
}
finally
{
CompatibilityTestHelpers.RemoveFile(projectPath);
}
}
示例3: TimeOfLastDirtyMarkAsDirty
public void TimeOfLastDirtyMarkAsDirty()
{
Project p = new Project(new Engine());
DateTime before = DateTime.Now;
Thread.Sleep(100);
p.MarkProjectAsDirty();
Thread.Sleep(100);
DateTime after = DateTime.Now;
Assertion.AssertEquals(true, p.TimeOfLastDirty > before);
Assertion.AssertEquals(true, p.TimeOfLastDirty < after);
}
示例4: MarkProjectAsDirty_True
public void MarkProjectAsDirty_True()
{
Project p = new Project(new Engine());
Assertion.AssertEquals(false, p.IsDirty);
p.MarkProjectAsDirty();
Assertion.AssertEquals(true, p.IsDirty);
}