Since Microsoft has released .NET Core 2.0 for Azure Functions a few days ago, I\'m trying to understand how to create a new Functions project in VS2017 targeting .NET Core.
This is supported with the 1.0.5 release of the Microsoft.NET.Sdk.Functions package.
In your Azure Functions Project, do the following:
Microsoft.NET.Sdk.Functions
package version to 1.0.5Edit .csproj
option and modify the TargetFramework
element value to netstandard2.0
This will should generate .NET Standard 2.0 assemblies with all the artifacts created by the Azure Functions tooling.