Stay organized with collections
Save and categorize content based on your preferences.
Specify dependencies in .NET
.NET Cloud Run functions use
Microsoft Build Engine (MSBuild) project files.
These files are central to the build and deployment
process. For C# the file extension is .csproj, for F# it is .fsproj, and
for Visual Basic it is .vbproj.
For example, here is the .csproj file for the C# Hello World sample:
You can add libraries to your function's project file as follows:
dotnet add package MY_LIBRARY
The Functions Framework is a
required dependency for all functions. Although Cloud Run functions
installs it on your behalf when the function is created, we recommend
that you include it as an explicit dependency for clarity.
If your function relies on private dependencies, we recommend that you
mirror functions-framework to your private registry. Include the mirrored
functions-framework as a dependency to your function to avoid installing the
package from the public internet.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-02 UTC."],[[[".NET Cloud Run functions utilize MSBuild project files (e.g., `.csproj`, `.fsproj`, `.vbproj`) which are essential for building and deploying functions."],["Libraries can be added to a function's project file using the `dotnet add package MY_LIBRARY` command."],["The Functions Framework is a required dependency for all functions, and including it explicitly is recommended for clarity."],["For private dependencies, mirroring `functions-framework` to a private registry and using it as a dependency is recommended to avoid installing from the public internet."]]],[]]