AaronRobinsonMSFT / DNNE

Prototype native exports for a .NET Assembly.
MIT License
397 stars 41 forks source link

Don't use both project path and intermediate output path when calculating output folder. #43

Closed jkoritzinsky closed 3 years ago

jkoritzinsky commented 3 years ago

The IntermediateOutputPath property is already a full path.

This seems to work today because IntermediateOutputPath is a subpath of $(MSBuildProjectDirectory) by default, but this breaks when $(IntermediateOutputPath) is in a different path. This fix unblocks enabling CI with Arcade for DllImportGenerator.

AaronRobinsonMSFT commented 3 years ago

@jkoritzinsky Thanks. This passes muster on Windows and macOS.