You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have library project with the classes. The project has <UseWPF> set to true as it uses WPF types.
I'd like to generate some classes from such DLL, but it throws an exception of:
that means, that I tried to include WindowsBase into the assemblies list. However, it requires also PresentationFramework and PresentationCore and if I add these, I receive an error about bitness problem.
public class MyGenerationSpec : GenerationSpec
{
public MyGenerationSpec()
{
AddClass<MyClassToBeGenerated>();
}
}
I am unable to find out how to affect this. What is proper procedure for this case? I tried to set project to x86/x64/Any CPU so it is most likely about the tool and DLL. PresentationCore/PresentationFramework are platform-agnostic.
Thank you
The text was updated successfully, but these errors were encountered:
I have library project with the classes. The project has
<UseWPF>
set to true as it uses WPF types.I'd like to generate some classes from such DLL, but it throws an exception of:
that means, that I tried to include WindowsBase into the assemblies list. However, it requires also PresentationFramework and PresentationCore and if I add these, I receive an error about bitness problem.
My tgconfig looks currently like this:
I am unable to find out how to affect this. What is proper procedure for this case? I tried to set project to x86/x64/Any CPU so it is most likely about the tool and DLL. PresentationCore/PresentationFramework are platform-agnostic.
Thank you
The text was updated successfully, but these errors were encountered: