-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
I have just installed PrettyBin on a .NET 4.6 project using VS2015. The lib directory was being created correctly but the assemblies were not being resolved when I tried to run the app.
The nuget package created the following line in my app.config
<probing privatePath="lib;libs" xmlns="" />
I had to remove the xmlns attribute in order to get it to work:
<probing privatePath="lib;libs"/>
ZachMierzejewski and jianghuaw