-
Notifications
You must be signed in to change notification settings - Fork 177
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
Cannot define RemotePayload #512
Comments
Currently WixShurp bootstrapper.WixSourceGenerated += (XDocument document) =>
{
document.FindFirst("ExePackage")
.AddElement("RemotePayload",
@"Size = 50352408;
Version = 4.5.50709.17929;
ProductName = Microsoft.NET Framework 4.5;
Description = Microsoft .NET Framework 4.5 Setup;
CertificatePublicKey = BE931A1B869E4BB989C2B32D0C105204ECBEFB3D;
CertificateThumbprint = 8363887511B4835B79C383ECF06FC055B5839255;
Hash = B2FF712CA0947040CA0B8E9BD7436A3C3524BB5D");
}; But I have made your post into a feature request so it will be implemented in the next release.. |
Thank you for the quick reply. But im still unable to assign it. See code below:
Error: |
was able to succeed iterating threw each element (but not each exePackage), maybe there is a better solution?
|
This is a temporary solution and the next release will have it as below: new ExePackage(@"..\redist\dotNetFx40_Full_x86_x64.exe")
{
Compressed = true
RemotePayloads = new[]
{
new RemotePayload
{
...
}
The change is here: adbb7b1 |
- Fixed problem with locating latest (v3.11) WiX Toolset installed - Issue #538: impossible rename file during installation; added `File.TargetFileName` - Issue #536: External_UI/WinFormsSetup how to get properties - Issue #531: Question: custom action and Embedded UI - Issue #511: Compile error CustomDialog - Issue #512: Cannot define RemotePayload - Issue #484: Is ExecuteInTempDomain really necessary? - Added `BalCondition` - Added `CAValidation` enum - `InRemoteAppDomain, InCurrentAppDomain, Disabled` - WixSharp.VS.ProjectTemplate: Release v1.6.0.0 - Updated to the new `WixSharp.UI.Runtime` structure. - Code cleanup (mainly CodeMaid cleaning)
- Fixed problem with locating latest (v3.11) WiX Toolset installed - Issue #538: impossible rename file during installation; added `File.TargetFileName` - Issue #536: External_UI/WinFormsSetup how to get properties - Issue #531: Question: custom action and Embedded UI - Issue #511: Compile error CustomDialog - Issue #512: Cannot define RemotePayload - Issue #484: Is ExecuteInTempDomain really necessary? - Added `BalCondition` - Added `CAValidation` enum - `InRemoteAppDomain, InCurrentAppDomain, Disabled` - WixSharp.VS.ProjectTemplate: Release v1.6.0.0 - Updated to the new `WixSharp.UI.Runtime` structure. - Code cleanup (mainly CodeMaid cleaning)
Im not able to define remotepayload as in wix on wixsharp. If i define this package, i have to own its .exe in order to build otherwise i get error file not found, i want it to be downloaded only during setup, on wix i wuold just predefine remotepayload and it would work, but i am unable to define on wixsharp.
Error msg: Element 'Payload' missing attribute 'SourceFile' or child element 'RemotePayload'. Exactly one of those is required.
The text was updated successfully, but these errors were encountered: