I have created several .Net Standard 2.0 libraries, tested the execution via a console application, as well as several tests - all is good.
Move over to azure function, and get the following run-time error:
I then try to download that specific version into the API Function project:
I'm using Visual Studio Version 15.7.0 Preview 5.0. I have updated the Azure Function to 4.7... as the console and test projects are - and those work.
Been at this a far too many hours.. so I'm hoping the resolution isn't something crazy. Ef Core 2.1.0-rc1-final is also in the mix. Using data annotations for Required, MaxLength, NotMapped.
Error in graphic says: Microsoft.EntityFrameworkCore: Could not load file or assembly 'System.ComponentModel.Annotations, Version=4.2.0.0
I have updated the Azure Function to 4.7
, I assumed that you targeted .NET Framework 4.7 and this is about the Azure Functions V1. I also created my Net Standard 2.0 class library and created my DbContext, I both referenced it under Azure Functions V1 (.net framework) and Azure Functions V2 (.net core) project and I found that both projects could work as expected. – Mazur.csproj
file or show thebin
folder? – Kwei