I created a C# project with the new NetSDK format. Globbing works with other situations:
<ItemGroup>
<None Include="Miscellaneous\*.misc" CopyToOutputDirectory="Always" />
</ItemGroup>
However, globbing does not seem to work with the Reference
tag:
<ItemGroup>
<!-- THIS DOES NOT WORK -->
<Reference Include="Company.Misc.*" HintPath="bin\Company.Misc.*.dll" />
<!-- THIS DOES WORK -->
<Reference Include="Company.Misc.A" HintPath="bin\Company.Misc.A.dll" />
<Reference Include="Company.Misc.B" HintPath="bin\Company.Misc.B.dll" />
</ItemGroup>
Not sure if there is a way to automatically pull in all items from the bin\ directory as a Reference so it shows up under 'Dependencies'?