|
|
|
@ -53,13 +53,13 @@ namespace WixBinding.Tests.Project |
|
|
|
[Test] |
|
|
|
[Test] |
|
|
|
public void OutputName() |
|
|
|
public void OutputName() |
|
|
|
{ |
|
|
|
{ |
|
|
|
Assert.AreEqual(info.ProjectName, project.GetProperty("OutputName")); |
|
|
|
Assert.AreEqual(info.ProjectName, project.GetEvaluatedProperty("OutputName")); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
[Test] |
|
|
|
[Test] |
|
|
|
public void OutputType() |
|
|
|
public void OutputType() |
|
|
|
{ |
|
|
|
{ |
|
|
|
Assert.AreEqual(WixOutputType.package.ToString(), project.GetProperty("OutputType")); |
|
|
|
Assert.AreEqual(WixOutputType.package.ToString(), project.GetEvaluatedProperty("OutputType")); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
[Test] |
|
|
|
[Test] |
|
|
|
@ -92,7 +92,7 @@ namespace WixBinding.Tests.Project |
|
|
|
[Test] |
|
|
|
[Test] |
|
|
|
public void DebugConfiguration() |
|
|
|
public void DebugConfiguration() |
|
|
|
{ |
|
|
|
{ |
|
|
|
Assert.AreEqual("Debug", project.GetProperty("Configuration")); |
|
|
|
Assert.AreEqual("Debug", project.GetEvaluatedProperty("Configuration")); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
[Test] |
|
|
|
[Test] |
|
|
|
|