Mansur
Guest
|
Hi,
I run allready the Sample application successfully so today I try to make my own Solution.
I Created an "ADX COM Add-in".
I selected c# as the Language, because I feel more homely.
Now wehen I compile the Project I get in the ****Shim Project the following Error(s):
.....ChartGeneratorShim.idl(10): error MIDL2025 : syntax error : expecting { near "."
The Code at that Line is:
library DZ.Addin.ChartGeneratorShimLib
Next Error:
....ChartGeneratorShim.idl(11): error MIDL2026 : cannot recover from earlier syntax errors; aborting compilation
Whitch may happens because of the previous error.
I just recognize ... Is it because there are Punctation "." in the Projectname?
I usualy use punctation like this:
Companyname.Medium.Project
SampleCompany.Web.SomeWebsite
or:
SampleCompany.AddIn.ChartGenerator
I think this kind of punctation is quite common...
But I have no Idea about c++ so I dont know how to solve it in your generated code.
Any advice?
regards,
Mansur
|
|
Sergey Grischenko
Add-in Express team
Posts: 7235
Joined: 2004-07-05
|
Hi Mansur.
I would advise you not to use '.' in the project name when you use C++.
If you want to use '.' in the name of your dll, you can always change the dll name through the OutputName property of your project.
|
|