Hi all,
I have a mixed language module I'm trying to package for installation.
I have one class written in C# and a wrapper class around it written in
vb.
What is the syntax for the manifest file to get the C# modules to install in a named subdirectory under App_Code? I have tried:
1)
[app_code]
MyClass.cs
which puts the files in "App_Code", but will not build because the language is different.
2)
[app_code]\cs
MyClass.cs
this puts the file in : \App_code\ModuleName\cs" which of course will not build because the code cannot be found.
3)
\App_Code\cs
MyClass.cs
which puts the code in "DesktopModules\ModuleName\cs", of course this won't work either.
I guess it's possible that this cannot be done via the manifest file alone.
If this is true, what are my options? I don want to add 3 or 4 manual steps
to the install docs if possible like having the admin update the web.config.
I would like this to be automated.
Regards,
-rock