aelij / IgnoresAccessChecksToGenerator

Generates reference assemblies where all the internal types & members become public, and applies the IgnoresAccessChecksTo attribute
MIT License
167 stars 21 forks source link

Use `IntermediateOutputPath` instead of blindly guessing that it's `obj/` #13

Closed nike4613 closed 1 year ago

nike4613 commented 2 years ago

Quite a lot of projects do not use the default intermediate output directory, instead moving it entirely out-of-band. This causes problems with this package, as it assumes that the intermediate output directory is the default, and MSBuild tries to load files generated by this as part of the project.

aelij commented 1 year ago

Thanks for the fix!