You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Issue #645: Add ampersand character (&) as xml delimiter
- `WixSharp.Extensions` class that is implemented in both _WixSharp.dll_ and _WixSharp.Msi.dll_ is refactored to
`WixSharp.Msi.Extensions` ifor the _WixSharp.Msi.dll_ assembly. This is done in order to avoid ambiguety when using both assemblies at the same time.
While it is a breaking change it is very easy to handle one and requires only an update in the _using_ clause:
```C#
using WixSharp.Msi;
// instead of old "using WixSharp;"
```
Existing xml delimiters defined in
Extensions.cs
only include<
and>
.Propose to include ampersand character (&) to handle conditional string such as
&feature_name=3
as been seen here.The text was updated successfully, but these errors were encountered: