I'm using VS2017 (C#) with Azure Function. It works fine. So now I'm trying to setup a class library for common functions. I couldn't find the reference to Microsoft.NET.Sdk.Functions (1.0.0) When I try to Add Reference (It was installed in vs2017, not Nuget) so I copied it directly from working azure csproj to my one classlibrary csproj
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.0" />
Then now when I build the class library, I get a "error MSB4057: The target "RunResolvePublishAssemblies" does not exist in the project."
How do I solve that?
As far as I know, if we want to use azure function in class library, we need set the project SDK to "Microsoft.NET.Sdk". The RunResolvePublishAssemblies is included in the Microsoft.NET.Sdk.
Like this:
And delete the class library's default compile file.
Because the 'Microsoft.NET.Sdk' includes 'Compile' items from your project directory by default.
Then it will work well.
The csporj is like this:
This is as same as the azure function csproj. So I don't suggest you add Azure Function reference in classlibrary. You could directly create one azure function project.