Skip to content

Commit

Permalink
Update README and release 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
natemcmaster committed Mar 28, 2018
1 parent ceeeecb commit 7d2584d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.2.1-alpha.{build}
version: 0.2.1-rtm.{build}
install:
- ps: iwr https://raw.githubusercontent.com/dotnet/cli/release/2.1.3xx/scripts/obtain/dotnet-install.ps1 -outfile dotnet-install.ps1
- ps: .\dotnet-install.ps1 -Version 2.1.300-preview1-008174 -InstallDir $env:ProgramFiles/dotnet
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,15 @@ dotnet install tool --global dotnet-serve
## Usage

```
dotnet serve [path] [options]
Usage: dotnet serve [arguments] [options]
Arguments:
path Base path to the server root. Defaults to the current directory.
path Base path to the server root
Options:
-?|-h|--help Show help information
-p|--port <PORT> Port to use [8080]. Use 0 for a dynamic port.
-a|--address <ADDRESS> Address to use [0.0.0.0]
-o|--open-browser Open a web browser when the server starts [false]
-?|-h|--help Show help information
-o|--open-browser Open a web browser when the server starts. [false]
--path-base <PATH> The base URL path of postpended to the site url.
```
2 changes: 1 addition & 1 deletion version.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<VersionPrefix>0.2.1</VersionPrefix>
<VersionSuffix>alpha</VersionSuffix>
<VersionSuffix>rtm</VersionSuffix>
<PackageVersion Condition="'$(APPVEYOR_REPO_TAG)' == 'true' AND '$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix)</PackageVersion>
<PackageVersion Condition="'$(APPVEYOR_REPO_TAG)' == 'true' AND '$(VersionSuffix)' == 'rtm'">$(VersionPrefix)</PackageVersion>

Expand Down

0 comments on commit 7d2584d

Please sign in to comment.