I'm encountering an error trying to build a component package. The following is the command I'm running:
xamarin-component.exe create-manually CSLA-Core-4.5.560.xam \ --name="CSLA .NET - Core" \ --summary="CSLA .NET is a software development framework that helps you build a powerful, maintainable business logic layer for Windows, Web, service-oriented and workflow applications." \ --publisher="Marimer, LLC" \ --website="http://www.cslanet.com/" \ --details="Details.md" \ --license="License.md" \ --getting-started="GettingStarted.md" \ --icon="CSLA-Core_128x128.png" \ --icon="CSLA-Core_512x512.png" \ --library="ios":"../bin/release/iOS/Csla.dll" \ --library="android":"../bin/release/Android/Csla.dll" \ --sample="iOS Sample. Shows Basic usage of CSLA .Net in iOS":"../samples/iOS/cs/SimpleApp/SimpleApp.sln" \ --sample="Android Sample. Shows Basic usage of CSLA .Net in Android":"../samples/Android/cs/SimpleApp/SimpleApp.sln"
This is the output I get:
C:\Projects\GitHub\csla\XamarinPackage>xamarin-component.exe create-manually CSL A-Core-4.5.560.xam \ --name="CSLA .NET - Core" \ --summary="CSLA .NET is a softw are development framework that helps you build a powerful, maintainable business logic layer for Windows, Web, service-oriented and workflow applications." \ -- publisher="Marimer, LLC" \ --website="http://www.cslanet.com/" \ --details="Deta ils.md" \ --license="License.md" \ --getting-started="GettingStarted.md" \ --ico n="CSLA-Core_128x128.png" \ --icon="CSLA-Core_512x512.png" \ --library="ios":".. /bin/release/iOS/Csla.dll" \ --library="android":"../bin/release/Android/Csla.dl l" \ --sample="iOS Sample. Shows Basic usage of CSLA .Net in iOS":"../samples/i OS/cs/SimpleApp/SimpleApp.sln" \ --sample="Android Sample. Shows Basic usage of CSLA .Net in Android":"../samples/Android/cs/SimpleApp/SimpleApp.sln" \ Running mdoc "update" "--debug" "-LC:\Program Files (x86)\Reference Assemblies\M icrosoft\Framework\MonoAndroid\v4.4" "-LC:\Program Files (x86)\Reference Assembl ies\Microsoft\Framework\MonoTouch\v1.0" "--import=C:\Projects\GitHub\csla\bin\re lease\iOS\Csla.xml" "-o" "C:\Users\kevinf\AppData\Local\Temp\CSLA-Core-4.5.560-1 510987576\en" "C:\Projects\GitHub\csla\bin\release\iOS\Csla.dll"...
Unhandled Exception: System.ComponentModel.Win32Exception: The system cannot fin d the file specified at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startIn fo) at System.Diagnostics.Process.Start(ProcessStartInfo startInfo) at Xamarin.Components.Packaging.Utility.Exe(String command, String[] args) at Xamarin.Components.Packaging.Creation.PackageCreator.WriteMonodocsUsingXml docs(ZipOutputStream zipStream, PackageSpec spec) at Xamarin.Components.Packaging.Creation.PackageCreator.CreatePackage(Package Spec spec) at Xamarin.Components.CreateManuallyCommandHandler.Invoke(String[] args) at Xamarin.Components.MainClass.Main(String[] args)
Any ideas?
Thanks!