For hours, im trying to compile my class with dependecies...
Im trying to call C# from java
this is the command I do to create a proxy
proxygen.exe PPAutomation.dll -wd C:\project\Server -dp Microsoft.Office.Interop.PowerPoint.dll;System.Runtime.InteropServices.dll
Then when I execute build.cmd I get this output...
compile classes
PPAutomation.j4n.jar
PPAutomation.j4n.dll
clr\microsoft\office\interop\powerpoint\Application.generated.cs(28,35): error CS0535: 'Microsoft.Office.Interop.PowerPoint.__Application' does not implement interface member 'Microsoft.Office.Interop.PowerPoint._Application.Help(string, int)'
c:\Windows\assembly\GAC_MSIL\Microsoft.Office.Interop.PowerPoint\15.0.0.0__71e9bce111e9429c\Microsoft.Office.Interop.PowerPoint.dll: (Location of symbol related to previous error)
clr\microsoft\office\interop\powerpoint\Application.generated.cs(28,35): error CS0535: 'Microsoft.Office.Interop.PowerPoint.__Application' does not implement interface member 'Microsoft.Office.Interop.PowerPoint._Application.Quit()'
...
and it go on true all the methods of my reference Microsoft.Office.Interop.PowerPoint.dll.
In case to the need of seeing all the logs ive attached it to the post
build.cmd does not compile
PPAutomation.j4n.dll
I just wanna know is there a new solution about it or I still have to separate the methods into a partial class?