0

I am trying to upload a Xamarin Component by using xamarin-component.exe tool as written in this guide. While it is building the .xam package file, the command console is throwing the following error:

xamarin-component.exe forcefully closing after this error popup

What is the problem? I am running it on windows. Is this related to machine permission?

Demitrian
  • 3,200
  • 1
  • 24
  • 41
Saravanan
  • 45
  • 1
  • 10
  • 1
    What is the path in which your directory resides? There may be some unexpected characters. Please add it to your question – Demitrian Jan 03 '17 at 14:32

1 Answers1

0

I've found the reason for the error message.The file paths format I've given for build,libraries,samples in the component.yaml file was not in the specified format. Also the spaces between the build,libraries,samples's keys and their respective values should be maintained as per the component submission guide.Like this, build: - src/samplecomponent.sln
libraries: ios-unified: ../src/samplecomponent/bin/release/Awesome.dll

Saravanan
  • 45
  • 1
  • 10