An Azure service that provides an event-driven serverless compute platform.
Hello @Ryan Abbey ,
adding NuGet package references in the portal is not a pleasant experience.
Yes, you can upload a function.proj file like this with a nugget package in it:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Messaging.ServiceBus" Version="7.5.1" />
</ItemGroup>
</Project>
I got that 5MB message too, no idea why. But just retry it. Or, if an empty file is created, copy that text into it and try to save it.
That said, I use the portal just to demonstrate stuff. I recommend working with the Azure Function project template (either in Visual Studio or Visual Studio Code).
The investment in getting started is worth it! You will gain so much eg. version control, a proper editor, proper debugging.