Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug in setting RegistryRoot in Registry_ record #4935

Open
wixbot opened this issue Oct 26, 2015 · 1 comment
Open

Bug in setting RegistryRoot in Registry_ record #4935

wixbot opened this issue Oct 26, 2015 · 1 comment
Milestone

Comments

@wixbot
Copy link

wixbot commented Oct 26, 2015

In order to add a registry key, I was trying to use Registry_ record and found a problem setting RegistryRoot.

The problem is in the index used for set:

In blob/develop/src/DTF/Libraries/WindowsInstaller.Linq/Entities.cs

public RegistryRoot Root
        { get { return (RegistryRoot) this.I(1); } set { this[0] = ((int) value).ToString(); } }

The index to set this[0] should be this[1]

..set { this[1] = ((int) value).ToString(); } }

Originally opened by kishmu

@wixbot
Copy link
Author

wixbot commented Oct 30, 2015

Release changed from v3.10 to v3.x

@wixbot wixbot added this to the v3.x milestone Dec 20, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant