public void Should_get_product_version_spesific_build_executable() { var document = new ProjectDocument(ProjectType.CSharp); document.SetFramework("v3.5"); document.SetVSVersion("9.0.30729"); _config.BuildExecutable(document).ShouldEqual(@"C:\ProductVersionFolder\MSBuild.exe"); }
public void Should_set_VSVersion() { _document.SetVSVersion("9.0"); _document.ProductVersion.ShouldEqual("9.0"); }