Skip to content

Commit 6e4e3dd

Browse files
committed
Fix Build Script
1 parent 9d5991e commit 6e4e3dd

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/build-release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ jobs:
1919
- name: Build Version
2020
# run: echo ::set-env name=RELEASE_VERSION::$(echo ${GITHUB_REF:11}) // deprecated
2121
run: echo "RELEASE_VERSION=$($env:GITHUB_REF.SubString(11))" >> $env:GITHUB_ENV
22-
- run: echo Version $env:RELEASE_VERSION
23-
- run: echo INPUT $env:GITHUB_REF
2422
- name: Build Project
2523
run: dotnet build --configuration Release -p:Version=$env:RELEASE_VERSION
2624
- name: Test Project

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,8 @@ using (var scope = serviceProvider.CreateScope()) // create a scoped DI containe
201201

202202
# Command Line Experience
203203

204+
***Note**: Due to upstream issues in the `dotnet/sdk` we are currently not providing the NuGet distributed `dotnet tool`. The CLI itself can be used by `dotnet run --` when compiling this project directly.*
205+
204206
The `poweredup` command line utility intends to allow the inspection of LEGO Wireless Protocol / Powered UP hubs and devices for their properties. It has utilities for ...
205207

206208
- **Enumerating all connected Devices** including hub internal devices and emit their static self-description as they expose using the LEGO Wireless Protocol.

src/SharpBrick.PoweredUp.Cli/SharpBrick.PoweredUp.Cli.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<OutputType>Exe</OutputType>
55
<TargetFrameworks>net5.0-windows10.0.19041.0;net5.0</TargetFrameworks>
66
<PackAsTool>true</PackAsTool>
7+
<IsPackable>false</IsPackable>
78
<ToolCommandName>poweredup</ToolCommandName>
89
</PropertyGroup>
910

0 commit comments

Comments
 (0)