You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by cs...@apache.org on 2018/12/15 20:15:50 UTC

[incubator-openwhisk] branch master updated: update dotnet doc to use .zip with wsk cli (#4180)

This is an automated email from the ASF dual-hosted git repository.

csantanapr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new 780c98c  update dotnet doc to use .zip with wsk cli (#4180)
780c98c is described below

commit 780c98c8983ecc470be6803988b0e94334d8a65e
Author: Carlos Santana <cs...@apache.org>
AuthorDate: Sat Dec 15 12:15:44 2018 -0800

    update dotnet doc to use .zip with wsk cli (#4180)
---
 docs/actions-dotnet.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/actions-dotnet.md b/docs/actions-dotnet.md
index 2e96b97..09c293b 100644
--- a/docs/actions-dotnet.md
+++ b/docs/actions-dotnet.md
@@ -76,7 +76,7 @@ Zip the published files as follows:
 
 ```bash
 cd out
-zip -r -0 helloDotNet.bin *
+zip -r -0 helloDotNet.zip *
 ```
 
 ### Create the .NET Core Action
@@ -89,7 +89,7 @@ The value for `main` needs to be in the following format:
 To use on a deployment of OpenWhisk that contains the runtime as a kind:
 
 ```bash
-wsk action update helloDotNet helloDotNet.bin --main Apache.OpenWhisk.Example.Dotnet::Apache.OpenWhisk.Example.Dotnet.Hello::Main --kind dotnet:2.2
+wsk action update helloDotNet helloDotNet.zip --main Apache.OpenWhisk.Example.Dotnet::Apache.OpenWhisk.Example.Dotnet.Hello::Main --kind dotnet:2.2
 ```
 
 ### Invoke the .NET Core Action