We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
I can not build NEO.CLI on master branch while I can on v3.7.4.
master
v3.7.4
To Reproduce
git clone https://github.com/neo-project/neo
cd src/Neo.CLI
dotnet publish -c release
Expected behavior
neo-cli is built successfully
neo-cli
Screenshots
Platform:
38cc0e9
(Optional) Additional context
Why it needs to access the root directory? My expect is to build it under current working directory's bin folder.
The text was updated successfully, but these errors were encountered:
Path
Property
*.csproj
I had same problem. Its a dotnet cli bug with the property. See #3306 only does this on linux.
dotnet cli
You can try adding -p:OutputPath=/my/accessable/path to the dotnet cli
-p:OutputPath=/my/accessable/path
Sorry, something went wrong.
work around is use
dotnet build neo.sln --configuration Release
Than check ./bin/Neo.CLI
./bin/Neo.CLI
cschuchardt88
Successfully merging a pull request may close this issue.
Describe the bug
I can not build NEO.CLI on
master
branch while I can onv3.7.4
.To Reproduce
git clone https://github.com/neo-project/neo
cd src/Neo.CLI
dotnet publish -c release
Expected behavior
neo-cli
is built successfullyScreenshots
Platform:
38cc0e9
(Optional) Additional context
Why it needs to access the root directory? My expect is to build it under current working directory's bin folder.
The text was updated successfully, but these errors were encountered: