4

We have our Local Nuget Setup which in on a Network path is like

//10.10.9.32/Microsoft/Nuget/

When I Configure New Source in Visual Studio. It configured correctly and working Fine

But When I am configuring Same Source on the Xamarin Studio on Mac. It is giving error Invalid Directory

How to come out from this error ?

Waqas Idrees
  • 1,443
  • 2
  • 17
  • 36

2 Answers2

1

The summary of a similar question is:

It seems NuGet in Xamarin doesn't support SMB protocol. Try mounting the address smb://10.10.9.32 and use a file URL (something like file:///Volumes/Microsoft/Nuget/) to configure the NuGet source.

Here is how you mount an SMB in Mac OS X: link.

Community
  • 1
  • 1
Sergey Avdeev
  • 910
  • 1
  • 8
  • 16
0

Just a guess here, but I think on OS X, connecting to file shares are different than in Windows. Try connecting like this:

smb://10.10.9.32/Microsoft/Nuget/
SharpMobileCode
  • 938
  • 5
  • 8