Skip to content

Commit

Permalink
Update getting started
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhailshilkov committed Jan 2, 2019
1 parent d6c5ac2 commit 52b3f44
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@ See [the example](https://github.com/mikhailshilkov/DurableFunctions.FSharp/blob

#### 3. Install NuGet package

Install the `DurableFunctions.FSharp` NuGet package:
Install the `Microsoft.NET.Sdk.Functions` and `DurableFunctions.FSharp` NuGet packages:

```
dotnet add package Microsoft.NET.Sdk.Functions
dotnet add package DurableFunctions.FSharp
```

Expand All @@ -47,6 +48,8 @@ dotnet add package DurableFunctions.FSharp
The following Hello World application can be used as a starting point:

``` fsharp
namespace MyDurableApp
open Microsoft.Azure.WebJobs
open DurableFunctions.FSharp
Expand Down
1 change: 1 addition & 0 deletions samples/samples.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.24" />
<PackageReference Include="DurableFunctions.FSharp" Version="0.1.0" />
<PackageReference Include="TaskBuilder.fs" Version="1.0.0" />
</ItemGroup>
Expand Down

0 comments on commit 52b3f44

Please sign in to comment.