I've been working on an Azure Functions project in Rider and, historically, was able to run local functions just fine.
Then I reformatted my PC, re-installed Rider + dependencies and pulled the functions project from source control again.
Then, local functions executed successfully.
Then, I shut down my computer at the end of the day, and turned it back on the next day.
Then, local functions failed to run:
Found C:\Users\<REDACTED>.csproj. Using for user secrets file configuration.
Error building configuration in an external startup class.
Error building configuration in an external startup class. System.Private.CoreLib: Could not load file or assembly '<REDACTED>, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'.
A host error has occurred during startup operation '4f18f32c-7b8a-4e9d-8939-9244c464baae'.
Microsoft.Azure.WebJobs.Script: Error building configuration in an external startup class. System.Private.CoreLib: Could not load file or assembly '<REDACTED>, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'.
Value cannot be null. (Parameter 'provider')
I was in a rush so I just used source control to pull down a second copy of that Azure Functions workspace, and that executed just fine!
However, this has now become a repeating pattern. And now that I'm not in much of a rush, I'm trying to figure out what's actually going on because it's quite a waste of time! Here's the pattern:
- Clone source into new Azure Functions workspace with never-before-used name
- Local Functions runner works fine
- I shut down the computer every night
- Local Functions doesn't work anymore
- Repeat from step 1
Highlighting the emphasised text in point 1 there: with never-before-used name. Even if I deleted the existing workspace, including from Rider, cloned it again, and opened it anew in Rider, the same failure would still occur. Instead, I have to use a new name for the new workspace.
This suggests to me that there's some sort of caching strangeness going on. I've tried deleting a bunch of different caches to no avail: bin
and obj
inside the workspace, .azurefunctions
and .dotnet
inside my user directory.
Running out of ideas now! Any more caches you can think of that I should try deleting? Or other ideas?
In case this is relevant, it's a net6.0
C# Azure Functions project (AzureFunctionsVersion V4
) using in-process worker model. There are also other team members running the functions locally, through Rider, without experiencing this error
The error you are getting could be due to the version incompatibility of the packages in your project or configuration issues.
Follow the below steps to resolve the issue:
bin
andobj
folders and rebuild the project.File=>Invalidate Caches=>Invalidate Restart
.Tools=>NuGet=> Manage NuGet Packages
=>Upgrade dependencies to the latest version.If the issue still persists, reinstall Rider and/or the .NET SDK and check again.