Discussion:
[WiX-users] Problems with Post Build Step and Dependencies in Votive
Anthony Wieser
2007-03-22 11:12:06 UTC
Permalink
Hi,

I'm trying to set up my project to automatically sign my msi files, so I've
added a a post build step that looks like this:
signcode <CERTIFICATE ARGUMENTS HERE> -t
http://timestamp.verisign.com/scripts/timstamp.dll
$(TargetDir)AutoSharesWx.msi

and the run post build event is set to:
"When the build updates the project output
That all seems to work fine, though you get a strange error if the build
fails:
1>C:\Program Files\MSBuild\Microsoft\WiX\v3.0\Wix.targets(360,7): Error
MSB4057: The target "_TimeStampAfterCompile" does not exist in the project.

Ignoring that though, what I really want to be able to do is set
dependencies on my Votive project to force it to recompile when my inputs
change (say A.exe as an example). I've tried adding A.exe as a reference,
but that doesn't work, nor does adding it as an embedded resource in the
project.

I must be missing something.

Anthony Wieser
Wieser Software Ltd
Justin Rockwood
2007-03-22 18:40:13 UTC
Permalink
Do you mind logging a bug on the _TimeStampAfterCompile? I'll look into
that.

As far as forcing a recompile... You can do that by including your inputs
into your .wixproj project file as <Content> elements. In Votive, you do
this by selecting "Content" from the Build Type property in the property
browser (hit F4 if it's not showing). If you're working just with the
MSBuild .wixproj file, you can just add <Content>Relative path to
file</Content> in an <ItemGroup> section. When compiling, I account for the
<Content> elements to trigger a rebuild if they change.

Justin

-----Original Message-----
From: wix-users-***@lists.sourceforge.net
[mailto:wix-users-***@lists.sourceforge.net] On Behalf Of Anthony Wieser
Sent: Thursday, March 22, 2007 4:12 AM
To: wix-***@lists.sourceforge.net
Subject: [WiX-users] Problems with Post Build Step and Dependencies in
Votive

Hi,

I'm trying to set up my project to automatically sign my msi files, so I've
added a a post build step that looks like this:
signcode <CERTIFICATE ARGUMENTS HERE> -t
http://timestamp.verisign.com/scripts/timstamp.dll
$(TargetDir)AutoSharesWx.msi

and the run post build event is set to:
"When the build updates the project output
That all seems to work fine, though you get a strange error if the build
fails:
1>C:\Program Files\MSBuild\Microsoft\WiX\v3.0\Wix.targets(360,7): Error
MSB4057: The target "_TimeStampAfterCompile" does not exist in the project.

Ignoring that though, what I really want to be able to do is set
dependencies on my Votive project to force it to recompile when my inputs
change (say A.exe as an example). I've tried adding A.exe as a reference,
but that doesn't work, nor does adding it as an embedded resource in the
project.

I must be missing something.

Anthony Wieser
Wieser Software Ltd


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
Anthony Wieser
2007-03-23 14:51:56 UTC
Permalink
----- Original Message -----
From: "Justin Rockwood" <***@cs.stanford.edu>
To: "'Anthony Wieser'" <wix-***@wieser-software.com>; <wix-***@lists.sourceforge.net>
Sent: Thursday, March 22, 2007 6:40 PM
Subject: RE: [WiX-users] Problems with Post Build Step and Dependencies in Votive
Post by Justin Rockwood
Do you mind logging a bug on the _TimeStampAfterCompile? I'll look into
that.
Done.
Post by Justin Rockwood
As far as forcing a recompile... You can do that by including your inputs
into your .wixproj project file as <Content> elements. In Votive, you do
this by selecting "Content" from the Build Type property in the property
browser (hit F4 if it's not showing). If you're working just with the
MSBuild .wixproj file, you can just add <Content>Relative path to
file</Content> in an <ItemGroup> section. When compiling, I account for the
<Content> elements to trigger a rebuild if they change.
Justin
I can't get this to work with Votive. My solution is structured as follows:

Proj-root
|
|-----Main Program Project
|
|-----Debug
|
|-----Release [exe to depend on is here]
|
|-----Wix Project
| |-----bin
| |------Release [msi ends up here]

In my project in VS2005, I right click on the Wix project, and choose Add > Existing Item...
When I navigate up the hierarchy to release, what happens is that a copy of the selected .exe file ends up in the Wix Project folder.

the .wixproj file contains:
<ItemGroup>
<Content Include="myprog.exe">
</ItemGroup>

Is that correct?

Manually editing as suggested above to
<Content Include="..\release\myprog.exe"> makes the project expand into a messy disaster of .. folders, which presumably isn't correct either. Especially as there are 3 .. based folders!

looking at the aftermath of that, this is what ends up in the wixproj file:
<ItemGroup>
<Folder Include="..\" />
<Folder Include="..\release" />
</ItemGroup>

Being of a suspicious nature, I created another folder, and then deleted it, and found it was removed from my disk.
I dread to think what will happen if I try to delete one of these from within votive, but why not?

<Don'tTryThisAtHome>
Deleting the .exe shown under folder release under folder .. does indeed delete the exe from the release...
Deleting the folder release under the folder .. the exe was in: You guessed it. The folders gone.
Deleting the other folder release that was under the populated .. tries to delete, but, instead gives:
Internal MSBuild Error: No parent BuildItemGroup for item to be removed.
</Don'tTryThisAtHome>

Even I'm not brave enough to delete my parent folder, which contains the project I'm in and everything else.

Ideally, I'd like to link in the outputs of the same configuration somehow into the dependency tree, though I'm not sure how to do that now. Any ideas?

Anthony Wieser
Wieser Software Ltd

p.s. What's the proper protocol for replies like this? Should they go to the author and the list, or just the list?
Anthony Wieser
2007-03-23 14:37:55 UTC
Permalink
----- Original Message -----
From: "Justin Rockwood" <***@cs.stanford.edu>
To: "'Anthony Wieser'" <wix-***@wieser-software.com>; <wix-***@lists.sourceforge.net>
Sent: Thursday, March 22, 2007 6:40 PM
Subject: RE: [WiX-users] Problems with Post Build Step and Dependencies in Votive
Post by Justin Rockwood
Do you mind logging a bug on the _TimeStampAfterCompile? I'll look into
that.
Done.
Post by Justin Rockwood
As far as forcing a recompile... You can do that by including your inputs
into your .wixproj project file as <Content> elements. In Votive, you do
this by selecting "Content" from the Build Type property in the property
browser (hit F4 if it's not showing). If you're working just with the
MSBuild .wixproj file, you can just add <Content>Relative path to
file</Content> in an <ItemGroup> section. When compiling, I account for the
<Content> elements to trigger a rebuild if they change.
Justin
I can't get this to work with Votive. My solution is structured as follows:

Proj-root
|
|-----Main Program Project
|
|-----Debug
|
|-----Release [exe to depend on is here]
|
|-----Wix Project
| |-----bin
| |------Release [msi ends up here]

In my project in VS2005, I right click on the Wix project, and choose Add > Existing Item...
When I navigate up the hierarchy to release, what happens is that a copy of the selected .exe file ends up in the Wix Project folder.

the .wixproj file contains:
<ItemGroup>
<Content Include="myprog.exe">
</ItemGroup>

Is that correct?

Manually editing as suggested above to
<Content Include="..\release\myprog.exe"> makes the project expand into a messy disaster of .. folders, which presumably isn't correct either. Especially as there are 3 .. based folders!

looking at the aftermath of that, this is what ends up in the wixproj file:
<ItemGroup>
<Folder Include="..\" />
<Folder Include="..\release" />
</ItemGroup>

Being of a suspicious nature, I created another folder, and then deleted it, and found it was removed from my disk.
I dread to think what will happen if I try to delete one of these from within votive, but why not?

<Don'tTryThisAtHome>
Deleting the .exe shown under folder release under folder .. does indeed delete the exe from the release...
Deleting the folder release under the folder .. the exe was in: You guessed it. The folders gone.
Deleting the other folder release that was under the populated .. tries to delete, but, instead gives:
Internal MSBuild Error: No parent BuildItemGroup for item to be removed.
</Don'tTryThisAtHome>

Even I'm not brave enough to delete my parent folder, which contains the project I'm in and everything else.

Ideally, I'd like to link in the outputs of the same configuration somehow into the dependency tree, though I'm not sure how to do that now. Any ideas?

Anthony Wieser
Wieser Software Ltd

p.s. What's the proper protocol for replies like this? Should they go to the author and the list, or just the list?
Justin Rockwood
2007-03-23 20:54:19 UTC
Permalink
In Visual Studio, when you select "Add Existing File..." if you just click
"Add", then the file will be copied to your local directory. This is by
design and works the same way as C#, VB, etc. If you want to add a link,
which you do, then drop down the little arrow next to the "Add" you'll see
an "Add As Link" option. You want to select that. This will then populate
your MSBuild (.wixproj) file for you correctly. You will not be allowed to
Delete that file, but you can remove the link from your project. Does this
make sense?

To do this manually, you have to do this:

<Content Include="relative path to file">
<Link>How you want the file to appear in your project</Link>
</Content>

A more concrete example:

<Content Include="..\Release\MyExe.exe">
<Link>MyExe.exe</Link>
</Content>

You shouldn't get messy directory structures if you do this approach.

Justin

-----Original Message-----
From: Anthony Wieser [mailto:***@wieser-software.com]
Sent: Friday, March 23, 2007 7:38 AM
To: Justin Rockwood; wix-***@lists.sourceforge.net
Subject: Re: [WiX-users] Problems with Post Build Step and Dependencies in
Votive


----- Original Message -----
From: "Justin Rockwood" <***@cs.stanford.edu>
To: "'Anthony Wieser'" <wix-***@wieser-software.com>;
<wix-***@lists.sourceforge.net>
Sent: Thursday, March 22, 2007 6:40 PM
Subject: RE: [WiX-users] Problems with Post Build Step and Dependencies in
Votive
Post by Justin Rockwood
Do you mind logging a bug on the _TimeStampAfterCompile? I'll look into
that.
Done.
Post by Justin Rockwood
As far as forcing a recompile... You can do that by including your inputs
into your .wixproj project file as <Content> elements. In Votive, you do
this by selecting "Content" from the Build Type property in the property
browser (hit F4 if it's not showing). If you're working just with the
MSBuild .wixproj file, you can just add <Content>Relative path to
file</Content> in an <ItemGroup> section. When compiling, I account for the
<Content> elements to trigger a rebuild if they change.
Justin
I can't get this to work with Votive. My solution is structured as follows:

Proj-root
|
|-----Main Program Project
|
|-----Debug
|
|-----Release [exe to depend on is here]
|
|-----Wix Project
| |-----bin
| |------Release [msi ends up here]

In my project in VS2005, I right click on the Wix project, and choose Add >
Existing Item...
When I navigate up the hierarchy to release, what happens is that a copy of
the selected .exe file ends up in the Wix Project folder.

the .wixproj file contains:
<ItemGroup>
<Content Include="myprog.exe">
</ItemGroup>

Is that correct?

Manually editing as suggested above to
<Content Include="..\release\myprog.exe"> makes the project expand into a
messy disaster of .. folders, which presumably isn't correct either.
Especially as there are 3 .. based folders!

looking at the aftermath of that, this is what ends up in the wixproj file:
<ItemGroup>
<Folder Include="..\" />
<Folder Include="..\release" />
</ItemGroup>

Being of a suspicious nature, I created another folder, and then deleted it,
and found it was removed from my disk.
I dread to think what will happen if I try to delete one of these from
within votive, but why not?

<Don'tTryThisAtHome>
Deleting the .exe shown under folder release under folder .. does indeed
delete the exe from the release...
Deleting the folder release under the folder .. the exe was in: You guessed
it. The folders gone.
Deleting the other folder release that was under the populated .. tries to
delete, but, instead gives:
Internal MSBuild Error: No parent BuildItemGroup for item to be
removed.
</Don'tTryThisAtHome>

Even I'm not brave enough to delete my parent folder, which contains the
project I'm in and everything else.

Ideally, I'd like to link in the outputs of the same configuration somehow
into the dependency tree, though I'm not sure how to do that now. Any
ideas?

Anthony Wieser
Wieser Software Ltd

p.s. What's the proper protocol for replies like this? Should they go to
the author and the list, or just the list?
Anthony Wieser
2007-03-23 21:14:34 UTC
Permalink
Subject: Re: [WiX-users] Problems with Post Build Step and Dependencies
inVotive
Post by Justin Rockwood
In Visual Studio, when you select "Add Existing File..." if you just click
"Add", then the file will be copied to your local directory. This is by
design and works the same way as C#, VB, etc. If you want to add a link,
which you do, then drop down the little arrow next to the "Add" you'll see
an "Add As Link" option. You want to select that. This will then populate
your MSBuild (.wixproj) file for you correctly. You will not be allowed to
Delete that file, but you can remove the link from your project. Does this
make sense?
There is no add as link option shown on my system when I right click the
project on my my system. Add shows "New Item" "Existing Item" and "Folder".
Am I looking in the wrong place?

Anthony Wieser
Wieser Software Ltd
Justin Rockwood
2007-03-23 21:18:56 UTC
Permalink
Right mouse click on your project --> Add/Existing Item --> an open dialog
pops up --> the "Add" button is actually a drop down button à click on "Add
As Link". Here's a screen shot.







-----Original Message-----
From: Anthony Wieser [mailto:wix-***@wieser-software.com]
Sent: Friday, March 23, 2007 2:15 PM
To: Justin Rockwood; wix-***@lists.sourceforge.net
Subject: Re: [WiX-users] Problems with Post Build Step and Dependencies
inVotive



Subject: Re: [WiX-users] Problems with Post Build Step and Dependencies

inVotive
Post by Justin Rockwood
In Visual Studio, when you select "Add Existing File..." if you just click
"Add", then the file will be copied to your local directory. This is by
design and works the same way as C#, VB, etc. If you want to add a link,
which you do, then drop down the little arrow next to the "Add" you'll see
an "Add As Link" option. You want to select that. This will then populate
your MSBuild (.wixproj) file for you correctly. You will not be allowed to
Delete that file, but you can remove the link from your project. Does this
make sense?
There is no add as link option shown on my system when I right click the

project on my my system. Add shows "New Item" "Existing Item" and "Folder".

Am I looking in the wrong place?



Anthony Wieser

Wieser Software Ltd
Anthony Wieser
2007-03-23 21:25:13 UTC
Permalink
----- Original Message -----
From: Justin Rockwood
To: 'Anthony Wieser' ; Justin Rockwood ; wix-***@lists.sourceforge.net
Sent: Friday, March 23, 2007 9:18 PM
Subject: RE: [WiX-users] Problems with Post Build Step and Dependencies inVotive


Right mouse click on your project --> Add/Existing Item --> an open dialog pops up --> the "Add" button is actually a drop down button à click on "Add As Link". Here's a screen shot.







There's no drop down on my Vista system.



Anthony Wieser

Wieser Software Ltd
Anthony Wieser
2007-03-23 22:01:20 UTC
Permalink
----- Original Message -----
From: Justin Rockwood
To: 'Anthony Wieser' ; Justin Rockwood ; wix-***@lists.sourceforge.net
Sent: Friday, March 23, 2007 9:18 PM
Subject: RE: [WiX-users] Problems with Post Build Step and Dependencies
inVotive


Right mouse click on your project --> Add/Existing Item --> an open dialog
pops up --> the "Add" button is actually a drop down button à click on "Add
As Link". Here's a screen shot.



It's also not a drop down on my XP system either.



Anthony Wieser

Wieser Software Ltd
Anthony Wieser
2007-03-28 10:06:53 UTC
Permalink
I've added this to my project:
<ItemGroup>
<Content Include="..\setupdude\dude.cab"><Link>dude.cab</Link></Content>
</ItemGroup>

When I reload the project in vs2005, this is what ends up in the file.
<ItemGroup>
<Content Include="..\setupdude\release\dude.cab">
<Link>dude.cab</Link>
</Content>
</ItemGroup>
<ItemGroup>
<Folder Include="..\" />
<Folder Include="..\setupdude\" />
<Folder Include="..\setupdude\release\" />
</ItemGroup>

I tried adding a folder structure manually first, but that looks like it's
going to lead to trouble.

When I create the first folder (..), I get a warning message that it exists
already, but it does get added to the project.
Then when I try to add a new folder to .., a new tree gets created.

So, it looks like this isn't working correctly in the UI. I haven't checked
if the msbuild file on its own works or not.

Any thoughts?

Anthony Wieser
Wieser Software Ltd


----- Original Message -----
From: "Justin Rockwood" <***@cs.stanford.edu>
To: "'Anthony Wieser'" <***@wieser-software.com>; "Justin Rockwood"
<***@cs.stanford.edu>; <wix-***@lists.sourceforge.net>
Sent: Friday, March 23, 2007 9:54 PM
Subject: Re: [WiX-users] Problems with Post Build Step and Dependencies
inVotive
Post by Justin Rockwood
In Visual Studio, when you select "Add Existing File..." if you just click
"Add", then the file will be copied to your local directory. This is by
design and works the same way as C#, VB, etc. If you want to add a link,
which you do, then drop down the little arrow next to the "Add" you'll see
an "Add As Link" option. You want to select that. This will then populate
your MSBuild (.wixproj) file for you correctly. You will not be allowed to
Delete that file, but you can remove the link from your project. Does this
make sense?
<Content Include="relative path to file">
<Link>How you want the file to appear in your project</Link>
</Content>
<Content Include="..\Release\MyExe.exe">
<Link>MyExe.exe</Link>
</Content>
You shouldn't get messy directory structures if you do this approach.
Justin
-----Original Message-----
Sent: Friday, March 23, 2007 7:38 AM
Subject: Re: [WiX-users] Problems with Post Build Step and Dependencies in
Votive
----- Original Message -----
Sent: Thursday, March 22, 2007 6:40 PM
Subject: RE: [WiX-users] Problems with Post Build Step and Dependencies in
Votive
Post by Justin Rockwood
Do you mind logging a bug on the _TimeStampAfterCompile? I'll look into
that.
Done.
Post by Justin Rockwood
As far as forcing a recompile... You can do that by including your inputs
into your .wixproj project file as <Content> elements. In Votive, you do
this by selecting "Content" from the Build Type property in the property
browser (hit F4 if it's not showing). If you're working just with the
MSBuild .wixproj file, you can just add <Content>Relative path to
file</Content> in an <ItemGroup> section. When compiling, I account for
the
Post by Justin Rockwood
<Content> elements to trigger a rebuild if they change.
Justin
Proj-root
|
|-----Main Program Project
|
|-----Debug
|
|-----Release [exe to depend on is here]
|
|-----Wix Project
| |-----bin
| |------Release [msi ends up here]
In my project in VS2005, I right click on the Wix project, and choose Add
Existing Item...
When I navigate up the hierarchy to release, what happens is that a copy of
the selected .exe file ends up in the Wix Project folder.
<ItemGroup>
<Content Include="myprog.exe">
</ItemGroup>
Is that correct?
Manually editing as suggested above to
<Content Include="..\release\myprog.exe"> makes the project expand into a
messy disaster of .. folders, which presumably isn't correct either.
Especially as there are 3 .. based folders!
<ItemGroup>
<Folder Include="..\" />
<Folder Include="..\release" />
</ItemGroup>
Being of a suspicious nature, I created another folder, and then deleted it,
and found it was removed from my disk.
I dread to think what will happen if I try to delete one of these from
within votive, but why not?
<Don'tTryThisAtHome>
Deleting the .exe shown under folder release under folder .. does indeed
delete the exe from the release...
Deleting the folder release under the folder .. the exe was in: You guessed
it. The folders gone.
Deleting the other folder release that was under the populated .. tries to
Internal MSBuild Error: No parent BuildItemGroup for item to be
removed.
</Don'tTryThisAtHome>
Even I'm not brave enough to delete my parent folder, which contains the
project I'm in and everything else.
Ideally, I'd like to link in the outputs of the same configuration somehow
into the dependency tree, though I'm not sure how to do that now. Any
ideas?
Anthony Wieser
Wieser Software Ltd
p.s. What's the proper protocol for replies like this? Should they go to
the author and the list, or just the list?
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
WiX-users mailing list
https://lists.sourceforge.net/lists/listinfo/wix-users
Justin Rockwood
2007-03-28 17:41:26 UTC
Permalink
Ok, I was afraid of that. It appears that this isn't implemented in the VS
SDK 3.0. Maybe it's been fixed in 4.0. I'll have to add this feature, since
it's not working correctly right now. Sorry for the trouble you're having.

Justin

-----Original Message-----
From: Anthony Wieser [mailto:wix-***@wieser-software.com]
Sent: Wednesday, March 28, 2007 3:07 AM
To: Justin Rockwood; wix-***@lists.sourceforge.net
Subject: Problems with Dependencies inVotive

I've added this to my project:
<ItemGroup>
<Content Include="..\setupdude\dude.cab"><Link>dude.cab</Link></Content>
</ItemGroup>

When I reload the project in vs2005, this is what ends up in the file.
<ItemGroup>
<Content Include="..\setupdude\release\dude.cab">
<Link>dude.cab</Link>
</Content>
</ItemGroup>
<ItemGroup>
<Folder Include="..\" />
<Folder Include="..\setupdude\" />
<Folder Include="..\setupdude\release\" />
</ItemGroup>

I tried adding a folder structure manually first, but that looks like it's
going to lead to trouble.

When I create the first folder (..), I get a warning message that it exists
already, but it does get added to the project.
Then when I try to add a new folder to .., a new tree gets created.

So, it looks like this isn't working correctly in the UI. I haven't checked
if the msbuild file on its own works or not.

Any thoughts?

Anthony Wieser
Wieser Software Ltd


----- Original Message -----
From: "Justin Rockwood" <***@cs.stanford.edu>
To: "'Anthony Wieser'" <***@wieser-software.com>; "Justin Rockwood"
<***@cs.stanford.edu>; <wix-***@lists.sourceforge.net>
Sent: Friday, March 23, 2007 9:54 PM
Subject: Re: [WiX-users] Problems with Post Build Step and Dependencies
inVotive
Post by Justin Rockwood
In Visual Studio, when you select "Add Existing File..." if you just click
"Add", then the file will be copied to your local directory. This is by
design and works the same way as C#, VB, etc. If you want to add a link,
which you do, then drop down the little arrow next to the "Add" you'll see
an "Add As Link" option. You want to select that. This will then populate
your MSBuild (.wixproj) file for you correctly. You will not be allowed to
Delete that file, but you can remove the link from your project. Does this
make sense?
<Content Include="relative path to file">
<Link>How you want the file to appear in your project</Link>
</Content>
<Content Include="..\Release\MyExe.exe">
<Link>MyExe.exe</Link>
</Content>
You shouldn't get messy directory structures if you do this approach.
Justin
-----Original Message-----
Sent: Friday, March 23, 2007 7:38 AM
Subject: Re: [WiX-users] Problems with Post Build Step and Dependencies in
Votive
----- Original Message -----
Sent: Thursday, March 22, 2007 6:40 PM
Subject: RE: [WiX-users] Problems with Post Build Step and Dependencies in
Votive
Post by Justin Rockwood
Do you mind logging a bug on the _TimeStampAfterCompile? I'll look into
that.
Done.
Post by Justin Rockwood
As far as forcing a recompile... You can do that by including your inputs
into your .wixproj project file as <Content> elements. In Votive, you do
this by selecting "Content" from the Build Type property in the property
browser (hit F4 if it's not showing). If you're working just with the
MSBuild .wixproj file, you can just add <Content>Relative path to
file</Content> in an <ItemGroup> section. When compiling, I account for
the
Post by Justin Rockwood
<Content> elements to trigger a rebuild if they change.
Justin
Proj-root
|
|-----Main Program Project
|
|-----Debug
|
|-----Release [exe to depend on is here]
|
|-----Wix Project
| |-----bin
| |------Release [msi ends up here]
In my project in VS2005, I right click on the Wix project, and choose Add
Existing Item...
When I navigate up the hierarchy to release, what happens is that a copy of
the selected .exe file ends up in the Wix Project folder.
<ItemGroup>
<Content Include="myprog.exe">
</ItemGroup>
Is that correct?
Manually editing as suggested above to
<Content Include="..\release\myprog.exe"> makes the project expand into a
messy disaster of .. folders, which presumably isn't correct either.
Especially as there are 3 .. based folders!
<ItemGroup>
<Folder Include="..\" />
<Folder Include="..\release" />
</ItemGroup>
Being of a suspicious nature, I created another folder, and then deleted it,
and found it was removed from my disk.
I dread to think what will happen if I try to delete one of these from
within votive, but why not?
<Don'tTryThisAtHome>
Deleting the .exe shown under folder release under folder .. does indeed
delete the exe from the release...
Deleting the folder release under the folder .. the exe was in: You guessed
it. The folders gone.
Deleting the other folder release that was under the populated .. tries to
Internal MSBuild Error: No parent BuildItemGroup for item to be
removed.
</Don'tTryThisAtHome>
Even I'm not brave enough to delete my parent folder, which contains the
project I'm in and everything else.
Ideally, I'd like to link in the outputs of the same configuration somehow
into the dependency tree, though I'm not sure how to do that now. Any
ideas?
Anthony Wieser
Wieser Software Ltd
p.s. What's the proper protocol for replies like this? Should they go to
the author and the list, or just the list?
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
WiX-users mailing list
https://lists.sourceforge.net/lists/listinfo/wix-users
Loading...