New Post: Wix# CustomAction bug if Sequence is NotInSequence
Я всего лишь хотел сказать, что я нашел багу в создании WIX файла: если выставить project.ControlPanelInfo.InstallLocation = "[INSTALLDIR]"; project.ControlPanelInfo.NoModify = true;то создаются 2...
View ArticleNew Post: Wix# CustomAction bug if Sequence is NotInSequence
OK. I see. Lucky me I understand Russian :) I thought the behavior is specific to CustomMSIDialog use-case. Thank you for suggestion I will see if it doesn't break any other scenarios, Will let you...
View ArticleNew Post: Internals class and method
I beg you to make public all the internal methods and classes. Otherwise, I have to edit the source code or completely copied. Example: I need additional arguments for...
View ArticleNew Post: Wix# CustomAction bug if Sequence is NotInSequence
I previously read your biography on http://www.codeproject.com/ :)
View ArticleNew Post: Wix# CustomAction bug if Sequence is NotInSequence
Your fix indeed address the issue and exhibits no side effects whatsoever. Yes it very simple. :) I have created an issue on your behalf. The fix will be available in the next release. Though I would...
View ArticleNew Post: Wrong Version on WixSharb.Lab.dll Blocking Builds
We are using the downloaded release - did you update that?
View ArticleNew Post: Wrong Version on WixSharb.Lab.dll Blocking Builds
No, not at that time yet. But now it is updated: https://wixsharp.codeplex.com/releases/view/620160.
View ArticleNew Post: Internals class and method
You would probably agree that making all types and their members unconditionally public is not exactly a reasonable approach. I do agree that excessive 'hiding' is one of the biggest problems in API...
View ArticleNew Post: NativeBootstrapper File Description
the description of the exe file that is generated by using NativeBootstrapper is always "Wix# Native Bootstrapper Application". Is there a way I can change it?
View ArticleNew Post: Including Redistribuatble .Net in SilentBootstrapper
I am currently attempting to use a silent bootstrapper to install a .net dependency in our program for users who may not have internet access. We have a redistributable version of the appropriate .net,...
View ArticleNew Post: Register custom actions to run for specific features?
Hi guys, I would like to run sum set of actions only if certain features were selected to install, is there a way to register the actions to run for some features or should I need to create some...
View ArticleNew Post: NativeBootstrapper File Description
You will need to recompile "nbsbuilder.exe" to allow user defined description. Possible but not an easy task. Alternatively you can change/patch the embedded exe file resoureces (including file...
View ArticleNew Post: Including Redistribuatble .Net in SilentBootstrapper
You will need to use ExePackage. Something similar to this:var bootstrapper = new Bundle("My Product", new ExePackage(@"..\redist\dotNetFx40_Full_x86_x64.exe") { Name = "Microsoft .NET Framework 4.0",...
View ArticleNew Post: Register custom actions to run for specific features?
You will need to set a Condition for the action and this condition needs to evaluate if the feature is marked for installation. You will need to use global variable ADDLOCAL that holds a coma separated...
View ArticleNew Post: Wix# CustomAction bug if Sequence is NotInSequence
it's my first Installer.Были требования: чтобы был MSI и чтобы можно было администраторам удаленно устанавливать на машину. Это я сейчас понимаю, что это просто настраивается параметрами, а тогда нужно...
View ArticleNew Post: Internals class and method
Я бы это регулировал namespace. Есть открытые namespace, такие как CommonTask и др. Они поддерживаются и могут безопасно использоваться. А есть закрытые CommonTask.Internal, которые каждый может...
View ArticleNew Post: Wix# CustomAction bug if Sequence is NotInSequence
OK. I see. Not a problem. BTW I wanted to tell this... I feel bad for not responding to you in your language. I have no problems with Russian speaking and reading but typing on English keyboard is...
View ArticleNew Post: Including Redistribuatble .Net in SilentBootstrapper
Thank you for the reply, it fixed up our issue. In regards to the .NET install, on both our development and test environments, the .NET installer fires a visual portion that the silent bootstrapper did...
View ArticleNew Post: Internals class and method
> ...я хотел поменять ControlType.Edit на ControlType.PathEdit, но ConvertToWControl - internal... This is exactly what I was looking for. You are right there is no any good justification for for...
View ArticleNew Post: How to install files in a folder based on custom property
I have a ManagedProject that installs some files in %ProgramFiles%\Company\AppName. Then I have some files that has to go into a folder that is resolved by reading a registry value. How can that be...
View Article