Gerd Walter
Posts: 1
Joined: 2005-06-11
|
I create a 'hello world' addin for mspoject with shim - didn't work
without shim it worked fine
is there a hint i didn't read?
Release 2.2 Build 1752 for Visual Studio .NET 2005. |
|
Sergey Grischenko
Add-in Express team
Posts: 7235
Joined: 2004-07-05
|
Hi Gerd.
I have two questions.
Did you rename/move the shim project after you had created it?
Did you check 'Create Directory For Solution' check box in the 'Create New Project' dialog in VS? If so, you need to change the Pre-Link and Post-Build properties of the shim project:
Pre-Link:
replace
"$(ProjectDir)Pre-Link.bat" "$(SolutionDir)bin\Debug\$(TargetFileName)"
wirt
"$(ProjectDir)Pre-Link.bat" "$(ProjectDir)..\bin\Debug\$(TargetFileName)"
Post-Build:
replace
"$(ProjectDir)Post-Build.bat" "$(TargetPath)" "$(SolutionDir)bin\Debug\$(TargetFileName)"
with
"$(ProjectDir)Post-Build.bat" "$(TargetPath)" "$(ProjectDir)..\bin\Debug\$(TargetFileName)"
It should help. We will publish a new ADX version on Friday. This issue will be fixed. |
|