Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
    • Yandex Cloud Partner program
  • Blog
  • Pricing
  • Documentation
© 2025 Direct Cursus Technology L.L.C.
Yandex Cloud Functions
  • Comparison with other Yandex Cloud services
    • Overview
    • Managing dependencies
    • Request handler
    • Invocation context
    • Logging
    • Handling errors
    • Using the SDK
  • Tools
  • Pricing policy
  • Access management
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • Release notes
  • FAQ

In this article:

  • NuGet
  • Manual delivery of dependencies
  1. Developing in .NET Core
  2. Managing dependencies

Building and managing .NET Core function dependencies

Written by
Yandex Cloud
Updated at December 11, 2024
  • NuGet
  • Manual delivery of dependencies

Cloud Functions supports two ways to manage .NET Core function dependencies: automatic installation via nuget and manual delivery together with the source code.

NuGetNuGet

NuGet is a package management system for .net.

To deliver dependencies using nuget, add a link to the required package to the *.csproj project file. No other actions are required. You can do this using .NET Core CLI.

Manual delivery of dependenciesManual delivery of dependencies

To configure dependencies manually, place the compiled project with all the dependencies in the project archive root.
You can do this using the .NET Core CLI publish command.
In which case you do not need to add the source code and project files to the archive.

The process of installing dependencies has resource and execution time limits. For more information, see Quotas and limits in Cloud Functions. You can view the dependency installation log using the link that appears in the list of operations.

Was the article helpful?

Previous
YcFunction interface
Next
Request handler
© 2025 Direct Cursus Technology L.L.C.