This repository was archived by the owner on Jul 19, 2024. It is now read-only.

Description
#endif is always missing in generated stubs, when the interface has namespace definition with preprocessor directives.
Example:
namespace myProject.sublibrary
{
using System;
using System.Collections.Generic;
using System.IO;
#if WinIoT
using System.Threading.Tasks;
#else
using myProject.ThreadingLib
#endif
In this case the generated stubs contain the #if statement, but no #else or #endif and therefore no build is possible.