public void OutputNameDifferentToProjectName()
        {
            WixProject project = WixBindingTestsHelper.CreateEmptyWixProject();

            project.SetProperty("OutputName", "ChangedName");

            Assert.AreEqual(@"C:\Projects\Test\bin\Debug\ChangedName.msi", project.GetInstallerFullPath());
        }
        public void InstallerFullPath()
        {
            WixProject project = WixBindingTestsHelper.CreateEmptyWixProject();

            Assert.AreEqual(@"C:\Projects\Test\bin\Debug\Test.msi", project.GetInstallerFullPath());
        }