-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Downgrade Functions V1 .NET version to net461 (#1257)
At one point, we upgraded the full framework target framework from net461 to net471 to reduce package size for our .NET Standard packages, as well as to utilize some new language features. This has caused two problems. 1. When Functions V1 customers target net462, they pull in the netstandard2.0 version of the dll, which is meant for Functions V2/V3 customers. 2. Using any 4.7 or greater release for Functions V1 breaks when using Microsoft.NET.Sdk.Functions 1.0.30 or greater, due to some conditional logic relying on #if NET46. Unfortunately, this version of that package is required to use Microsoft.Azure.WebJobs 2.3.0 instead of 2.2.0. This PR reverts to net461 to avoid these issues, as well as some required code changes to make it compatible with this older version.
- Loading branch information
Connor McMahon
authored
Mar 5, 2020
1 parent
a874101
commit cf9f4c2
Showing
7 changed files
with
37 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
...WebJobs.Extensions.DurableTask-net471.xml → ...WebJobs.Extensions.DurableTask-net461.xml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
src/WebJobs.Extensions.DurableTask/Microsoft.Azure.WebJobs.Extensions.DurableTask.xml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
test/FunctionsV1/WebJobs.Extensions.DurableTask.Tests.V1.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters