You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've followed the instructions and added Assetxport as a NuGet package to my Android project. Next I've added the Config.assets.json file and set it up. When I build I get the following error:
'Assetxport.Cli.exe' is not recognized as an internal or external command, operable program or batch file.
Looking at the targets file, it appears to be just looking for Assetxport.Cli.exe, which means it should be in the current directory (from where the build is run) or the path to Assetxport.Cli.exe should be added to the PATH environment variable.
To make it work I replaced this line <AssetxportCli Condition=" '$(AssetxportCli)' == '' ">Assetxport.Cli.exe</AssetxportCli>
with this <AssetxportCli Condition=" '$(AssetxportCli)' == '' ">$(MSBuildThisFileDirectory)..\..\tools\Assetxport.Cli.exe</AssetxportCli>
The text was updated successfully, but these errors were encountered:
I've followed the instructions and added Assetxport as a NuGet package to my Android project. Next I've added the Config.assets.json file and set it up. When I build I get the following error:
Looking at the targets file, it appears to be just looking for Assetxport.Cli.exe, which means it should be in the current directory (from where the build is run) or the path to Assetxport.Cli.exe should be added to the PATH environment variable.
To make it work I replaced this line
<AssetxportCli Condition=" '$(AssetxportCli)' == '' ">Assetxport.Cli.exe</AssetxportCli>
with this
<AssetxportCli Condition=" '$(AssetxportCli)' == '' ">$(MSBuildThisFileDirectory)..\..\tools\Assetxport.Cli.exe</AssetxportCli>
The text was updated successfully, but these errors were encountered: