Closed bkardol closed 7 years ago
This seems like a small (but important) contribution, so no Contribution License Agreement is required at this point. We will now review your pull request. Thanks, Microsoft Pull Request Bot
Thanks @Snorvisable. Instead of filtering, wouldn't be better to carry over the using static System.String
as is?
I added support for static usings. Thanks @Snorvisable for the PR!
I agree, thanks a lot.
SimpleStubs.generated.cs should not include usings which were 'using static' from origin. Therefore we're filtering these out. If a file contains for example
using static System.String
, the Code Generator converted it tousing System.String
which is wrong.