Skip to content

Commit

Permalink
Add support for .NET Standard 2.0 for Azure Functions (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgillum authored Dec 8, 2021
1 parent 2b6e0ec commit 24fdfe6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v0.11.1-beta

### Updates

* Added .NET Standard 2.0 support to Microsoft.DurableTask.SqlServer.AzureFunctions ([#63](https://github.com/microsoft/durabletask-mssql/pull/63))

## v0.11.0-beta

### New
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Import Project="../common.props" />

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<TargetFrameworks>netstandard2.1;netstandard2.0</TargetFrameworks>
</PropertyGroup>

<!-- NuGet package settings -->
Expand Down
2 changes: 1 addition & 1 deletion src/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<!-- Version settings: https://andrewlock.net/version-vs-versionsuffix-vs-packageversion-what-do-they-all-mean/ -->
<PropertyGroup>
<MajorVersion>0</MajorVersion>
<VersionPrefix>$(MajorVersion).11.0</VersionPrefix>
<VersionPrefix>$(MajorVersion).11.1</VersionPrefix>
<VersionSuffix>beta</VersionSuffix>
<AssemblyVersion>$(MajorVersion).0.0.0</AssemblyVersion>
<BuildSuffix Condition="'$(GITHUB_RUN_NUMBER)' != ''">.$(GITHUB_RUN_NUMBER)</BuildSuffix>
Expand Down

0 comments on commit 24fdfe6

Please sign in to comment.