Xamarin component.exe 未在 Windows 上打开
Xamarin component.exe is not opening on Windows
我已经下载了XPGK .zip
archive to be able to upload my component to the Xamarin Store. I have done so by following the first step of this guide。
但是当我单击 .exe
文件时,命令提示符文件只是出现并消失了?有什么问题?
你关注guide了吗?它没有提到您应该单击 .exe
文件来打开它。相反,.exe
文件用于生成组件所需的目录结构。
Use the xamarin-component.exe to create the base structure by typing the following into the console/terminal where is the base folder for your component.
Note: you will need to change the path to the location where you extracted the ".exe” file.
这意味着您应该首先将 .exe
文件提取到您希望放置解决方案的目录(很可能是您的工作区)。
然后,使用 console/terminal,导航到您提取 .exe
文件的目录并键入以下内容:
对于Windows:
xamarin-component.exe create <foldername>
对于 OS X:
mono xamarin-component.exe create <foldername>
其中 <foldername>
是您希望目录的名称。
我已经下载了XPGK .zip
archive to be able to upload my component to the Xamarin Store. I have done so by following the first step of this guide。
但是当我单击 .exe
文件时,命令提示符文件只是出现并消失了?有什么问题?
你关注guide了吗?它没有提到您应该单击 .exe
文件来打开它。相反,.exe
文件用于生成组件所需的目录结构。
Use the xamarin-component.exe to create the base structure by typing the following into the console/terminal where is the base folder for your component.
Note: you will need to change the path to the location where you extracted the ".exe” file.
这意味着您应该首先将 .exe
文件提取到您希望放置解决方案的目录(很可能是您的工作区)。
然后,使用 console/terminal,导航到您提取 .exe
文件的目录并键入以下内容:
对于Windows:
xamarin-component.exe create <foldername>
对于 OS X:
mono xamarin-component.exe create <foldername>
其中 <foldername>
是您希望目录的名称。