|
|
|
Karl Denning
|
I rigged one of my MSIs to fail immediately after IntallInitialize (a deferred CA that with impersonate="Yes" is rigged to return an error).
I've discovered that the product is unregistered even though no files/folders/reg are removed. Does anyone know why? The last few lines of my log file are below: MSI (s) (C8:DC) [18:05:19:135]: User policy value 'DisableRollback' is 0 MSI (s) (C8:DC) [18:05:19:135]: Machine policy value 'DisableRollback' is 0 MSI (s) (C8:DC) [18:05:19:135]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2 Action ended 18:05:19: InstallFinalize. Return value 3. MSI (s) (C8:DC) [18:05:19:135]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2 MSI (s) (C8:DC) [18:05:19:135]: Calling SRSetRestorePoint API. dwRestorePtType: 13, dwEventType: 103, llSequenceNumber: 37, szDescription: "". MSI (s) (C8:DC) [18:05:19:166]: The call to SRSetRestorePoint API succeeded. Returned status: 0. MSI (s) (C8:DC) [18:05:19:166]: Unlocking Server MSI (s) (C8:DC) [18:05:19:166]: PROPERTY CHANGE: Deleting UpdateStarted property. Its current value is '1'. Action ended 18:05:19: INSTALL. Return value 3. ... ... all the properties are here ... Property(S): RollbackDisabled = 1 MSI (s) (C8:DC) [18:05:19:244]: Note: 1: 1725 MSI (s) (C8:DC) [18:05:19:244]: Product: Sample -- Removal failed. MSI (s) (C8:DC) [18:05:19:260]: Cleaning up uninstalled install packages, if any exist MSI (s) (C8:DC) [18:05:19:260]: Post-install cleanup: removing installer file 'C:\WINDOWS\Installer\15a307.msi' MSI (s) (C8:DC) [18:05:19:260]: Post-install cleanup: removing installer file 'C:\WINDOWS\Installer\{938BAF3B-6B94-4C4E-AB74-0B199110AEE2}\Icon_Logo' MSI (s) (C8:DC) [18:05:19:260]: Post-install cleanup: removing installer folder 'C:\WINDOWS\Installer\{938BAF3B-6B94-4C4E-AB74-0B199110AEE2}\' (if empty) MSI (s) (C8:DC) [18:05:19:260]: Post-install cleanup: removing installer file 'C:\WINDOWS\Installer\{938BAF3B-6B94-4C4E-AB74-0B199110AEE2}\Icon_Another' MSI (s) (C8:DC) [18:05:19:260]: Post-install cleanup: removing installer folder 'C:\WINDOWS\Installer\{938BAF3B-6B94-4C4E-AB74-0B199110AEE2}\' (if empty) MSI (s) (C8:DC) [18:05:19:260]: MainEngineThread is returning 1603 MSI (s) (C8:48) [18:05:19:275]: Destroying RemoteAPI object. MSI (s) (C8:C8) [18:05:19:275]: Custom Action Manager thread ending. === Logging stopped: 26/06/2009 18:05:19 === MSI (c) (74:D0) [18:05:19:307]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1 MSI (c) (74:D0) [18:05:19:307]: MainEngineThread is returning 1603 === Verbose logging stopped: 26/06/2009 18:05:19 === |
||||||||||||||||
|
Lian Jiang
|
Hi,
I run this msi locally in an admin command line window, but the msi cannot start the service it just installed. The error is "service failed to start. Verify that you have sufficient priviledge to start system services.". Below is my code and you can see I am using LocalSystem account. I can see that the service is installed under LocalSystem account but msi failed to start it. I can manually install and start this service without any problem. Did I miss anything in my code? Appreciate your hint. Thanks Lian <Component Id='MyFileComponent' Guid='53129948-5257-42c5-96e2-b0cc492100bc' Location='local' DiskId='1' Win64='$(var.Win64AttributeValue)'> <File Id='MyExeFile' Vital='yes' KeyPath='yes' Name='my.exe' Source='MyService.exe' /> <File Id='MyConfigFile' Vital='yes' Name='my.exe.config' Source='MyService.exe.config' /> <ServiceInstall Id="MyServiceInstaller" Name="MyService" DisplayName="My Service" Type="ownProcess" Start="auto" ErrorControl="normal" Description="MyServiceInstall" Account="LocalSystem" Vital="yes"> </ServiceInstall> <ServiceControl Id="StartMyService" Start="install" Stop="both" Remove="uninstall" Name="InstallMyService" Wait="yes" /> </Component> -----Original Message----- From: Karl Denning [mailto:[hidden email]] Sent: Friday, June 26, 2009 6:20 PM To: [hidden email] Subject: [WiX-users] Product is unregistered even though uninstall failed? I rigged one of my MSIs to fail immediately after IntallInitialize (a deferred CA that with impersonate="Yes" is rigged to return an error). I've discovered that the product is unregistered even though no files/folders/reg are removed. Does anyone know why? The last few lines of my log file are below: MSI (s) (C8:DC) [18:05:19:135]: User policy value 'DisableRollback' is 0 MSI (s) (C8:DC) [18:05:19:135]: Machine policy value 'DisableRollback' is 0 MSI (s) (C8:DC) [18:05:19:135]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2 Action ended 18:05:19: InstallFinalize. Return value 3. MSI (s) (C8:DC) [18:05:19:135]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2 MSI (s) (C8:DC) [18:05:19:135]: Calling SRSetRestorePoint API. dwRestorePtType: 13, dwEventType: 103, llSequenceNumber: 37, szDescription: "". MSI (s) (C8:DC) [18:05:19:166]: The call to SRSetRestorePoint API succeeded. Returned status: 0. MSI (s) (C8:DC) [18:05:19:166]: Unlocking Server MSI (s) (C8:DC) [18:05:19:166]: PROPERTY CHANGE: Deleting UpdateStarted property. Its current value is '1'. Action ended 18:05:19: INSTALL. Return value 3. ... ... all the properties are here ... Property(S): RollbackDisabled = 1 MSI (s) (C8:DC) [18:05:19:244]: Note: 1: 1725 MSI (s) (C8:DC) [18:05:19:244]: Product: Sample -- Removal failed. MSI (s) (C8:DC) [18:05:19:260]: Cleaning up uninstalled install packages, if any exist MSI (s) (C8:DC) [18:05:19:260]: Post-install cleanup: removing installer file 'C:\WINDOWS\Installer\15a307.msi' MSI (s) (C8:DC) [18:05:19:260]: Post-install cleanup: removing installer file 'C:\WINDOWS\Installer\{938BAF3B-6B94-4C4E-AB74-0B199110AEE2}\Icon_Logo' MSI (s) (C8:DC) [18:05:19:260]: Post-install cleanup: removing installer folder 'C:\WINDOWS\Installer\{938BAF3B-6B94-4C4E-AB74-0B199110AEE2}\' (if empty) MSI (s) (C8:DC) [18:05:19:260]: Post-install cleanup: removing installer file 'C:\WINDOWS\Installer\{938BAF3B-6B94-4C4E-AB74-0B199110AEE2}\Icon_Another' MSI (s) (C8:DC) [18:05:19:260]: Post-install cleanup: removing installer folder 'C:\WINDOWS\Installer\{938BAF3B-6B94-4C4E-AB74-0B199110AEE2}\' (if empty) MSI (s) (C8:DC) [18:05:19:260]: MainEngineThread is returning 1603 MSI (s) (C8:48) [18:05:19:275]: Destroying RemoteAPI object. MSI (s) (C8:C8) [18:05:19:275]: Custom Action Manager thread ending. === Logging stopped: 26/06/2009 18:05:19 === MSI (c) (74:D0) [18:05:19:307]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1 MSI (c) (74:D0) [18:05:19:307]: MainEngineThread is returning 1603 === Verbose logging stopped: 26/06/2009 18:05:19 === -- View this message in context: http://n2.nabble.com/Product-is-unregistered-even-though-uninstall-failed--tp3164837p3164837.html Sent from the wix-users mailing list archive at Nabble.com. ------------------------------------------------------------------------------ _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users ------------------------------------------------------------------------------ _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users |
||||||||||||||||
|
John H. Bergman (XPedient Technologies)
|
I just installed WiX 3.5.0626 and do not have the WiX project types with Visual Studio now. Does anyone know what happened? The 3.5.0605 has them in place, but every build after that does not.
John ------------------------------------------------------------------------------ _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users |
||||||||||||||||
|
Lian Jiang
|
In reply to this post
by Lian Jiang
Problem solved. ServiceControl's name is wrong.
Thanks Lian -----Original Message----- From: Lian Jiang [mailto:[hidden email]] Sent: Saturday, June 27, 2009 9:40 AM To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] service failed to start. Verify that you have sufficient priviledge to start system services. Hi, I run this msi locally in an admin command line window, but the msi cannot start the service it just installed. The error is "service failed to start. Verify that you have sufficient priviledge to start system services.". Below is my code and you can see I am using LocalSystem account. I can see that the service is installed under LocalSystem account but msi failed to start it. I can manually install and start this service without any problem. Did I miss anything in my code? Appreciate your hint. Thanks Lian <Component Id='MyFileComponent' Guid='53129948-5257-42c5-96e2-b0cc492100bc' Location='local' DiskId='1' Win64='$(var.Win64AttributeValue)'> <File Id='MyExeFile' Vital='yes' KeyPath='yes' Name='my.exe' Source='MyService.exe' /> <File Id='MyConfigFile' Vital='yes' Name='my.exe.config' Source='MyService.exe.config' /> <ServiceInstall Id="MyServiceInstaller" Name="MyService" DisplayName="My Service" Type="ownProcess" Start="auto" ErrorControl="normal" Description="MyServiceInstall" Account="LocalSystem" Vital="yes"> </ServiceInstall> <ServiceControl Id="StartMyService" Start="install" Stop="both" Remove="uninstall" Name="InstallMyService" Wait="yes" /> </Component> -----Original Message----- From: Karl Denning [mailto:[hidden email]] Sent: Friday, June 26, 2009 6:20 PM To: [hidden email] Subject: [WiX-users] Product is unregistered even though uninstall failed? I rigged one of my MSIs to fail immediately after IntallInitialize (a deferred CA that with impersonate="Yes" is rigged to return an error). I've discovered that the product is unregistered even though no files/folders/reg are removed. Does anyone know why? The last few lines of my log file are below: MSI (s) (C8:DC) [18:05:19:135]: User policy value 'DisableRollback' is 0 MSI (s) (C8:DC) [18:05:19:135]: Machine policy value 'DisableRollback' is 0 MSI (s) (C8:DC) [18:05:19:135]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2 Action ended 18:05:19: InstallFinalize. Return value 3. MSI (s) (C8:DC) [18:05:19:135]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2 MSI (s) (C8:DC) [18:05:19:135]: Calling SRSetRestorePoint API. dwRestorePtType: 13, dwEventType: 103, llSequenceNumber: 37, szDescription: "". MSI (s) (C8:DC) [18:05:19:166]: The call to SRSetRestorePoint API succeeded. Returned status: 0. MSI (s) (C8:DC) [18:05:19:166]: Unlocking Server MSI (s) (C8:DC) [18:05:19:166]: PROPERTY CHANGE: Deleting UpdateStarted property. Its current value is '1'. Action ended 18:05:19: INSTALL. Return value 3. ... ... all the properties are here ... Property(S): RollbackDisabled = 1 MSI (s) (C8:DC) [18:05:19:244]: Note: 1: 1725 MSI (s) (C8:DC) [18:05:19:244]: Product: Sample -- Removal failed. MSI (s) (C8:DC) [18:05:19:260]: Cleaning up uninstalled install packages, if any exist MSI (s) (C8:DC) [18:05:19:260]: Post-install cleanup: removing installer file 'C:\WINDOWS\Installer\15a307.msi' MSI (s) (C8:DC) [18:05:19:260]: Post-install cleanup: removing installer file 'C:\WINDOWS\Installer\{938BAF3B-6B94-4C4E-AB74-0B199110AEE2}\Icon_Logo' MSI (s) (C8:DC) [18:05:19:260]: Post-install cleanup: removing installer folder 'C:\WINDOWS\Installer\{938BAF3B-6B94-4C4E-AB74-0B199110AEE2}\' (if empty) MSI (s) (C8:DC) [18:05:19:260]: Post-install cleanup: removing installer file 'C:\WINDOWS\Installer\{938BAF3B-6B94-4C4E-AB74-0B199110AEE2}\Icon_Another' MSI (s) (C8:DC) [18:05:19:260]: Post-install cleanup: removing installer folder 'C:\WINDOWS\Installer\{938BAF3B-6B94-4C4E-AB74-0B199110AEE2}\' (if empty) MSI (s) (C8:DC) [18:05:19:260]: MainEngineThread is returning 1603 MSI (s) (C8:48) [18:05:19:275]: Destroying RemoteAPI object. MSI (s) (C8:C8) [18:05:19:275]: Custom Action Manager thread ending. === Logging stopped: 26/06/2009 18:05:19 === MSI (c) (74:D0) [18:05:19:307]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1 MSI (c) (74:D0) [18:05:19:307]: MainEngineThread is returning 1603 === Verbose logging stopped: 26/06/2009 18:05:19 === -- View this message in context: http://n2.nabble.com/Product-is-unregistered-even-though-uninstall-failed--tp3164837p3164837.html Sent from the wix-users mailing list archive at Nabble.com. ------------------------------------------------------------------------------ _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users ------------------------------------------------------------------------------ _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users ------------------------------------------------------------------------------ _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users |
||||||||||||||||
|
Rob Mensching-6
|
In reply to this post
by John H. Bergman (XPedient Technologies)
Sounds like a bug. WiX v3.5 is under development right now and Votive is
not necessarily stable. John H. Bergman (XPedient Technologies) wrote: > I just installed WiX 3.5.0626 and do not have the WiX project types with Visual Studio now. Does anyone know what happened? The 3.5.0605 has them in place, but every build after that does not. > > John > > ------------------------------------------------------------------------------ > _______________________________________________ > WiX-users mailing list > [hidden email] > https://lists.sourceforge.net/lists/listinfo/wix-users > ------------------------------------------------------------------------------ _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users |
||||||||||||||||
|
John H. Bergman (XPedient Technologies)
|
I can live with using an older version, but I am struggling with the MSM references. The Setup project that references the MergeModules receives an error per Merge Module, I had previously posted with the exact error and output.
Additionally, it appears that a temporary files is locked during compilation in 3.5x (also included in the previous email/log). If you could point me towards where the MergeModule reference issue could be, I will try to look at it to see if I can determine what the problem could be... -----Original Message----- From: Rob Mensching [mailto:[hidden email]] Sent: Friday, July 03, 2009 2:49 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] WiX 3.5.0626 missing VS2010 Project Types? Sounds like a bug. WiX v3.5 is under development right now and Votive is not necessarily stable. John H. Bergman (XPedient Technologies) wrote: > I just installed WiX 3.5.0626 and do not have the WiX project types with Visual Studio now. Does anyone know what happened? The 3.5.0605 has them in place, but every build after that does not. > > John > > ------------------------------------------------------------------------------ > _______________________________________________ > WiX-users mailing list > [hidden email] > https://lists.sourceforge.net/lists/listinfo/wix-users > ------------------------------------------------------------------------------ _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users ------------------------------------------------------------------------------ _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users |
||||||||||||||||
|
Bob Arnson-6
|
John H. Bergman (XPedient Technologies) wrote:
> I can live with using an older version, but I am struggling with the MSM references. The Setup project that references the MergeModules receives an error per Merge Module, I had previously posted with the exact error and output. > Do you get the errors with WiX v3.0? Do you get the errors from a command line build? -- sig://boB http://joyofsetup.com/ ------------------------------------------------------------------------------ _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users |
||||||||||||||||
|
Mike Carlson (DEV DIV)
|
In reply to this post
by Rob Mensching-6
Were you by chance using Visual Studio 2010? Votive2010 was inadvertently removed for a few builds, but the issue has since been fixed, and votive2010 should be back in the MSI with the latest 3.5 build (3.5.0704.0).
Thanks, Mike Carlson -----Original Message----- From: Rob Mensching [mailto:[hidden email]] Sent: Friday, July 03, 2009 12:49 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] WiX 3.5.0626 missing VS2010 Project Types? Sounds like a bug. WiX v3.5 is under development right now and Votive is not necessarily stable. John H. Bergman (XPedient Technologies) wrote: > I just installed WiX 3.5.0626 and do not have the WiX project types with Visual Studio now. Does anyone know what happened? The 3.5.0605 has them in place, but every build after that does not. > > John > > ------------------------------------------------------------------------------ > _______________________________________________ > WiX-users mailing list > [hidden email] > https://lists.sourceforge.net/lists/listinfo/wix-users > ------------------------------------------------------------------------------ _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users ------------------------------------------------------------------------------ _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users |
||||||||||||||||
|
John H. Bergman (XPedient Technologies)
|
Yes I was. (Thanks).
I will grab the updated build to determine if the other problems still exist, probably tomorrow. John -----Original Message----- From: Mike Carlson (DEV DIV) [mailto:[hidden email]] Sent: Monday, July 06, 2009 12:46 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] WiX 3.5.0626 missing VS2010 Project Types? Were you by chance using Visual Studio 2010? Votive2010 was inadvertently removed for a few builds, but the issue has since been fixed, and votive2010 should be back in the MSI with the latest 3.5 build (3.5.0704.0). Thanks, Mike Carlson -----Original Message----- From: Rob Mensching [mailto:[hidden email]] Sent: Friday, July 03, 2009 12:49 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] WiX 3.5.0626 missing VS2010 Project Types? Sounds like a bug. WiX v3.5 is under development right now and Votive is not necessarily stable. John H. Bergman (XPedient Technologies) wrote: > I just installed WiX 3.5.0626 and do not have the WiX project types with Visual Studio now. Does anyone know what happened? The 3.5.0605 has them in place, but every build after that does not. > > John > > ------------------------------------------------------------------------------ > _______________________________________________ > WiX-users mailing list > [hidden email] > https://lists.sourceforge.net/lists/listinfo/wix-users > ------------------------------------------------------------------------------ _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users ------------------------------------------------------------------------------ _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/blackberry _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users |
||||||||||||||||
|
John H. Bergman (XPedient Technologies)
|
In reply to this post
by Bob Arnson-6
Finally got back to this.
I did not get the errors with Wix3.0. When I moved to 3.5 so that I had VS2010 support, I had to recreate the projects. The MergeModule Projects compile fine, it is only the actual setup project that gives the error when it references to MergeModules. Each MergeModule needed/used is added as a reference to the setup project. I get the same error regardless of whether I run from inside VS2010 or from MSBuild. Today, I got the latest build that has Votive2010 back in, (3.5.0704.0); the behavior has not changed. I had previously included the VS2010 output; here is the MSBuild output (including the commandline used to start the build of the install). Thanks, John =-=-=- MSBUILD OUTPUT BELOW -=-=-= C:\XP2010\XPertJustice\Working\XPedient>msbuild install.app.server.xpertjustice\ install.app.server.xpertjustice.wixproj /p:Configuration=Debug Microsoft (R) Build Engine Version 4.0.20506.1 [Microsoft .NET Framework, Version 4.0.20506.1] Copyright (C) Microsoft Corporation 2007. All rights reserved. Build started 7/8/2009 12:50:58 PM. Project "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustic e\install.app.server.xpertjustice.wixproj" on node 1 (default targets). Project "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustic e\install.app.server.xpertjustice.wixproj" (1) is building "C:\XP2010\XPertJust ice\Working\XPedient\Install.MM.Management.Client\Install.MM.Management.Client. wixproj" (3) on node 1 (GetTargetPath;GetResolvedReferencePaths target(s)). C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Management.Client\Install.MM .Management.Client.wixproj : error MSB4057: The target "GetResolvedReferencePat hs" does not exist in the project. Done Building Project "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Manag ement.Client\Install.MM.Management.Client.wixproj" (GetTargetPath;GetResolvedRe ferencePaths target(s)) -- FAILED. Project "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustic e\install.app.server.xpertjustice.wixproj" (1) is building "C:\XP2010\XPertJust ice\Working\XPedient\Install.MM.Management.Plugins.Client\Install.MM.Management .Plugins.Client.wixproj" (4) on node 1 (GetTargetPath;GetResolvedReferencePaths target(s)). C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Management.Plugins.Client\In stall.MM.Management.Plugins.Client.wixproj : error MSB4057: The target "GetReso lvedReferencePaths" does not exist in the project. Done Building Project "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Manag ement.Plugins.Client\Install.MM.Management.Plugins.Client.wixproj" (GetTargetPa th;GetResolvedReferencePaths target(s)) -- FAILED. Project "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustic e\install.app.server.xpertjustice.wixproj" (1) is building "C:\XP2010\XPertJust ice\Working\XPedient\Install.MM.Management.Plugins.Common\Install.MM.Management .Plugins.Common.wixproj" (5) on node 1 (GetTargetPath;GetResolvedReferencePaths target(s)). C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Management.Plugins.Common\In stall.MM.Management.Plugins.Common.wixproj : error MSB4057: The target "GetReso lvedReferencePaths" does not exist in the project. Done Building Project "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Manag ement.Plugins.Common\Install.MM.Management.Plugins.Common.wixproj" (GetTargetPa th;GetResolvedReferencePaths target(s)) -- FAILED. Project "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustic e\install.app.server.xpertjustice.wixproj" (1) is building "C:\XP2010\XPertJust ice\Working\XPedient\Install.MM.Platform.Common\Install.MM.Platform.Common.wixp roj" (6) on node 1 (GetTargetPath;GetResolvedReferencePaths target(s)). C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platform.Common\Install.MM.P latform.Common.wixproj : error MSB4057: The target "GetResolvedReferencePaths" does not exist in the project. Done Building Project "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platf orm.Common\Install.MM.Platform.Common.wixproj" (GetTargetPath;GetResolvedRefere ncePaths target(s)) -- FAILED. Project "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustic e\install.app.server.xpertjustice.wixproj" (1) is building "C:\XP2010\XPertJust ice\Working\XPedient\Install.MM.Platform.Diagnostics\Install.MM.Platform.Diagno stics.wixproj" (7) on node 1 (GetTargetPath;GetResolvedReferencePaths target(s) ). C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platform.Diagnostics\Install .MM.Platform.Diagnostics.wixproj : error MSB4057: The target "GetResolvedRefere ncePaths" does not exist in the project. Done Building Project "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platf orm.Diagnostics\Install.MM.Platform.Diagnostics.wixproj" (GetTargetPath;GetReso lvedReferencePaths target(s)) -- FAILED. Project "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustic e\install.app.server.xpertjustice.wixproj" (1) is building "C:\XP2010\XPertJust ice\Working\XPedient\Install.MM.Platform.Plugins.Common\Install.MM.Platform.Plu gins.Common.wixproj" (8) on node 1 (GetTargetPath;GetResolvedReferencePaths tar get(s)). C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platform.Plugins.Common\Inst all.MM.Platform.Plugins.Common.wixproj : error MSB4057: The target "GetResolved ReferencePaths" does not exist in the project. Done Building Project "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platf orm.Plugins.Common\Install.MM.Platform.Plugins.Common.wixproj" (GetTargetPath;G etResolvedReferencePaths target(s)) -- FAILED. Project "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustic e\install.app.server.xpertjustice.wixproj" (1) is building "C:\XP2010\XPertJust ice\Working\XPedient\Install.MM.Platform.Plugins.Database\Install.MM.Platform.P lugins.Database.wixproj" (9) on node 1 (GetTargetPath;GetResolvedReferencePaths target(s)). C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platform.Plugins.Database\In stall.MM.Platform.Plugins.Database.wixproj : error MSB4057: The target "GetReso lvedReferencePaths" does not exist in the project. Done Building Project "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platf orm.Plugins.Database\Install.MM.Platform.Plugins.Database.wixproj" (GetTargetPa th;GetResolvedReferencePaths target(s)) -- FAILED. Project "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustic e\install.app.server.xpertjustice.wixproj" (1) is building "C:\XP2010\XPertJust ice\Working\XPedient\Install.MM.Platform.Plugins.Server\Install.MM.Platform.Plu gins.Server.wixproj" (10) on node 1 (GetTargetPath;GetResolvedReferencePaths ta rget(s)). C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platform.Plugins.Server\Inst all.MM.Platform.Plugins.Server.wixproj : error MSB4057: The target "GetResolved ReferencePaths" does not exist in the project. Done Building Project "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platf orm.Plugins.Server\Install.MM.Platform.Plugins.Server.wixproj" (GetTargetPath;G etResolvedReferencePaths target(s)) -- FAILED. Project "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustic e\install.app.server.xpertjustice.wixproj" (1) is building "C:\XP2010\XPertJust ice\Working\XPedient\Install.MM.Platform.Server\Install.MM.Platform.Server.wixp roj" (11) on node 1 (GetTargetPath;GetResolvedReferencePaths target(s)). C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platform.Server\Install.MM.P latform.Server.wixproj : error MSB4057: The target "GetResolvedReferencePaths" does not exist in the project. Done Building Project "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platf orm.Server\Install.MM.Platform.Server.wixproj" (GetTargetPath;GetResolvedRefere ncePaths target(s)) -- FAILED. Project "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustic e\install.app.server.xpertjustice.wixproj" (1) is building "C:\XP2010\XPertJust ice\Working\XPedient\Install.MM.XPertJustice.Common\Install.MM.XPertJustice.Com mon.wixproj" (12) on node 1 (GetTargetPath;GetResolvedReferencePaths target(s)) . C:\XP2010\XPertJustice\Working\XPedient\Install.MM.XPertJustice.Common\Install. MM.XPertJustice.Common.wixproj : error MSB4057: The target "GetResolvedReferenc ePaths" does not exist in the project. Done Building Project "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.XPert Justice.Common\Install.MM.XPertJustice.Common.wixproj" (GetTargetPath;GetResolv edReferencePaths target(s)) -- FAILED. Project "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustic e\install.app.server.xpertjustice.wixproj" (1) is building "C:\XP2010\XPertJust ice\Working\XPedient\Install.MM.XPertJustice.Plugins.Common\Install.MM.XPertJus tice.Plugins.Common.wixproj" (13) on node 1 (GetTargetPath;GetResolvedReference Paths target(s)). C:\XP2010\XPertJustice\Working\XPedient\Install.MM.XPertJustice.Plugins.Common\ Install.MM.XPertJustice.Plugins.Common.wixproj : error MSB4057: The target "Get ResolvedReferencePaths" does not exist in the project. Done Building Project "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.XPert Justice.Plugins.Common\Install.MM.XPertJustice.Plugins.Common.wixproj" (GetTarg etPath;GetResolvedReferencePaths target(s)) -- FAILED. Project "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustic e\install.app.server.xpertjustice.wixproj" (1) is building "C:\XP2010\XPertJust ice\Working\XPedient\Install.MM.XPertJustice.Plugins.Server\Install.MM.XPertJus tice.Plugins.Server.wixproj" (14) on node 1 (GetTargetPath;GetResolvedReference Paths target(s)). C:\XP2010\XPertJustice\Working\XPedient\Install.MM.XPertJustice.Plugins.Server\ Install.MM.XPertJustice.Plugins.Server.wixproj : error MSB4057: The target "Get ResolvedReferencePaths" does not exist in the project. Done Building Project "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.XPert Justice.Plugins.Server\Install.MM.XPertJustice.Plugins.Server.wixproj" (GetTarg etPath;GetResolvedReferencePaths target(s)) -- FAILED. Project "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustic e\install.app.server.xpertjustice.wixproj" (1) is building "C:\XP2010\XPertJust ice\Working\XPedient\Install.MM.XPertJustice.Server\Install.MM.XPertJustice.Ser ver.wixproj" (15) on node 1 (GetTargetPath;GetResolvedReferencePaths target(s)) . C:\XP2010\XPertJustice\Working\XPedient\Install.MM.XPertJustice.Server\Install. MM.XPertJustice.Server.wixproj : error MSB4057: The target "GetResolvedReferenc ePaths" does not exist in the project. Done Building Project "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.XPert Justice.Server\Install.MM.XPertJustice.Server.wixproj" (GetTargetPath;GetResolv edReferencePaths target(s)) -- FAILED. Done Building Project "C:\XP2010\XPertJustice\Working\XPedient\install.app.serv er.xpertjustice\install.app.server.xpertjustice.wixproj" (default targets) -- F AILED. Build FAILED. "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustice\instal l.app.server.xpertjustice.wixproj" (default target) (1) -> "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Management.Client\Install.M M.Management.Client.wixproj" (GetTargetPath;GetResolvedReferencePaths target) ( 3) -> C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Management.Client\Install. MM.Management.Client.wixproj : error MSB4057: The target "GetResolvedReferenceP aths" does not exist in the project. "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustice\instal l.app.server.xpertjustice.wixproj" (default target) (1) -> "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Management.Plugins.Client\I nstall.MM.Management.Plugins.Client.wixproj" (GetTargetPath;GetResolvedReferenc ePaths target) (4) -> C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Management.Plugins.Client\ Install.MM.Management.Plugins.Client.wixproj : error MSB4057: The target "GetRe solvedReferencePaths" does not exist in the project. "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustice\instal l.app.server.xpertjustice.wixproj" (default target) (1) -> "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Management.Plugins.Common\I nstall.MM.Management.Plugins.Common.wixproj" (GetTargetPath;GetResolvedReferenc ePaths target) (5) -> C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Management.Plugins.Common\ Install.MM.Management.Plugins.Common.wixproj : error MSB4057: The target "GetRe solvedReferencePaths" does not exist in the project. "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustice\instal l.app.server.xpertjustice.wixproj" (default target) (1) -> "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platform.Common\Install.MM. Platform.Common.wixproj" (GetTargetPath;GetResolvedReferencePaths target) (6) - > C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platform.Common\Install.MM .Platform.Common.wixproj : error MSB4057: The target "GetResolvedReferencePaths " does not exist in the project. "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustice\instal l.app.server.xpertjustice.wixproj" (default target) (1) -> "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platform.Diagnostics\Instal l.MM.Platform.Diagnostics.wixproj" (GetTargetPath;GetResolvedReferencePaths tar get) (7) -> C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platform.Diagnostics\Insta ll.MM.Platform.Diagnostics.wixproj : error MSB4057: The target "GetResolvedRefe rencePaths" does not exist in the project. "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustice\instal l.app.server.xpertjustice.wixproj" (default target) (1) -> "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platform.Plugins.Common\Ins tall.MM.Platform.Plugins.Common.wixproj" (GetTargetPath;GetResolvedReferencePat hs target) (8) -> C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platform.Plugins.Common\In stall.MM.Platform.Plugins.Common.wixproj : error MSB4057: The target "GetResolv edReferencePaths" does not exist in the project. "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustice\instal l.app.server.xpertjustice.wixproj" (default target) (1) -> "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platform.Plugins.Database\I nstall.MM.Platform.Plugins.Database.wixproj" (GetTargetPath;GetResolvedReferenc ePaths target) (9) -> C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platform.Plugins.Database\ Install.MM.Platform.Plugins.Database.wixproj : error MSB4057: The target "GetRe solvedReferencePaths" does not exist in the project. "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustice\instal l.app.server.xpertjustice.wixproj" (default target) (1) -> "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platform.Plugins.Server\Ins tall.MM.Platform.Plugins.Server.wixproj" (GetTargetPath;GetResolvedReferencePat hs target) (10) -> C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platform.Plugins.Server\In stall.MM.Platform.Plugins.Server.wixproj : error MSB4057: The target "GetResolv edReferencePaths" does not exist in the project. "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustice\instal l.app.server.xpertjustice.wixproj" (default target) (1) -> "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platform.Server\Install.MM. Platform.Server.wixproj" (GetTargetPath;GetResolvedReferencePaths target) (11) -> C:\XP2010\XPertJustice\Working\XPedient\Install.MM.Platform.Server\Install.MM .Platform.Server.wixproj : error MSB4057: The target "GetResolvedReferencePaths " does not exist in the project. "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustice\instal l.app.server.xpertjustice.wixproj" (default target) (1) -> "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.XPertJustice.Common\Install .MM.XPertJustice.Common.wixproj" (GetTargetPath;GetResolvedReferencePaths targe t) (12) -> C:\XP2010\XPertJustice\Working\XPedient\Install.MM.XPertJustice.Common\Instal l.MM.XPertJustice.Common.wixproj : error MSB4057: The target "GetResolvedRefere ncePaths" does not exist in the project. "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustice\instal l.app.server.xpertjustice.wixproj" (default target) (1) -> "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.XPertJustice.Plugins.Common \Install.MM.XPertJustice.Plugins.Common.wixproj" (GetTargetPath;GetResolvedRefe rencePaths target) (13) -> C:\XP2010\XPertJustice\Working\XPedient\Install.MM.XPertJustice.Plugins.Commo n\Install.MM.XPertJustice.Plugins.Common.wixproj : error MSB4057: The target "G etResolvedReferencePaths" does not exist in the project. "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustice\instal l.app.server.xpertjustice.wixproj" (default target) (1) -> "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.XPertJustice.Plugins.Server \Install.MM.XPertJustice.Plugins.Server.wixproj" (GetTargetPath;GetResolvedRefe rencePaths target) (14) -> C:\XP2010\XPertJustice\Working\XPedient\Install.MM.XPertJustice.Plugins.Serve r\Install.MM.XPertJustice.Plugins.Server.wixproj : error MSB4057: The target "G etResolvedReferencePaths" does not exist in the project. "C:\XP2010\XPertJustice\Working\XPedient\install.app.server.xpertjustice\instal l.app.server.xpertjustice.wixproj" (default target) (1) -> "C:\XP2010\XPertJustice\Working\XPedient\Install.MM.XPertJustice.Server\Install .MM.XPertJustice.Server.wixproj" (GetTargetPath;GetResolvedReferencePaths targe t) (15) -> C:\XP2010\XPertJustice\Working\XPedient\Install.MM.XPertJustice.Server\Instal l.MM.XPertJustice.Server.wixproj : error MSB4057: The target "GetResolvedRefere ncePaths" does not exist in the project. 0 Warning(s) 13 Error(s) Time Elapsed 00:00:00.19 >-----Original Message----- >From: Bob Arnson [mailto:[hidden email]] >Sent: Saturday, July 04, 2009 2:20 PM >To: General discussion for Windows Installer XML toolset. >Subject: Re: [WiX-users] WiX 3.5.0626 missing VS2010 Project Types? > >John H. Bergman (XPedient Technologies) wrote: >> I can live with using an older version, but I am struggling with the MSM references. The Setup project that >>references the MergeModules receives an error per Merge Module, I had previously posted with the exact error and output. >> > >Do you get the errors with WiX v3.0? Do you get the errors from a >command line build? > >-- >sig://boB >http://joyofsetup.com/ ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users |
||||||||||||||||
|
Bob Arnson-6
|
John H. Bergman (XPedient Technologies) wrote:
> .Management.Client.wixproj : error MSB4057: The target "GetResolvedReferencePat > hs" does not exist in the project. > Certainly seems like a bug; that target isn't defined in wix2010.targets. Could you open a bug and attach this output? -- sig://boB http://joyofsetup.com/ ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users |
||||||||||||||||
|
Mike Carlson (DEV DIV)
|
I think a bug is already filed for this (#2803058):
http://sourceforge.net/tracker/?func=detail&aid=2803058&group_id=105970&atid=642714 -----Original Message----- From: Bob Arnson [mailto:[hidden email]] Sent: Thursday, July 09, 2009 6:26 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] WiX 3.5.0626 missing VS2010 Project Types? John H. Bergman (XPedient Technologies) wrote: > .Management.Client.wixproj : error MSB4057: The target "GetResolvedReferencePat > hs" does not exist in the project. > Certainly seems like a bug; that target isn't defined in wix2010.targets. Could you open a bug and attach this output? -- sig://boB http://joyofsetup.com/ ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users |
||||||||||||||||
|
John H. Bergman (XPedient Technologies)
|
Yep, that looks like the same bug; although in my case I am using a reference to a Merge Module, not a Library.
-----Original Message----- From: Mike Carlson (DEV DIV) [mailto:[hidden email]] Sent: Thursday, July 09, 2009 9:18 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] WiX 3.5.0626 missing VS2010 Project Types? I think a bug is already filed for this (#2803058): http://sourceforge.net/tracker/?func=detail&aid=2803058&group_id=105970&atid=642714 -----Original Message----- From: Bob Arnson [mailto:[hidden email]] Sent: Thursday, July 09, 2009 6:26 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] WiX 3.5.0626 missing VS2010 Project Types? John H. Bergman (XPedient Technologies) wrote: > .Management.Client.wixproj : error MSB4057: The target "GetResolvedReferencePat > hs" does not exist in the project. > Certainly seems like a bug; that target isn't defined in wix2010.targets. Could you open a bug and attach this output? -- sig://boB http://joyofsetup.com/ ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users |
||||||||||||||||
|
John H. Bergman (XPedient Technologies)
|
In reply to this post
by Mike Carlson (DEV DIV)
If you can provide a pointer as to what would be needed to fix this, I am more than willing to help. This bug is completely blocking us now.
-----Original Message----- From: Mike Carlson (DEV DIV) [mailto:[hidden email]] Sent: Thursday, July 09, 2009 9:18 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] WiX 3.5.0626 missing VS2010 Project Types? I think a bug is already filed for this (#2803058): http://sourceforge.net/tracker/?func=detail&aid=2803058&group_id=105970&atid=642714 -----Original Message----- From: Bob Arnson [mailto:[hidden email]] Sent: Thursday, July 09, 2009 6:26 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] WiX 3.5.0626 missing VS2010 Project Types? John H. Bergman (XPedient Technologies) wrote: > .Management.Client.wixproj : error MSB4057: The target "GetResolvedReferencePat > hs" does not exist in the project. > Certainly seems like a bug; that target isn't defined in wix2010.targets. Could you open a bug and attach this output? -- sig://boB http://joyofsetup.com/ ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ WiX-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/wix-users |
||||||||||||||||
| Free Embeddable Forum Powered by Nabble | Help |