Skip to content

Commit

Permalink
Fix Build Script
Browse files Browse the repository at this point in the history
  • Loading branch information
tthiery committed May 8, 2021
1 parent 9d5991e commit 6e4e3dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ jobs:
- name: Build Version
# run: echo ::set-env name=RELEASE_VERSION::$(echo ${GITHUB_REF:11}) // deprecated
run: echo "RELEASE_VERSION=$($env:GITHUB_REF.SubString(11))" >> $env:GITHUB_ENV
- run: echo Version $env:RELEASE_VERSION
- run: echo INPUT $env:GITHUB_REF
- name: Build Project
run: dotnet build --configuration Release -p:Version=$env:RELEASE_VERSION
- name: Test Project
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,8 @@ using (var scope = serviceProvider.CreateScope()) // create a scoped DI containe

# Command Line Experience

***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.*

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 ...

- **Enumerating all connected Devices** including hub internal devices and emit their static self-description as they expose using the LEGO Wireless Protocol.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<OutputType>Exe</OutputType>
<TargetFrameworks>net5.0-windows10.0.19041.0;net5.0</TargetFrameworks>
<PackAsTool>true</PackAsTool>
<IsPackable>false</IsPackable>
<ToolCommandName>poweredup</ToolCommandName>
</PropertyGroup>

Expand Down

0 comments on commit 6e4e3dd

Please sign in to comment.