简体   繁体   中英

How to use #load in scriptcs for an Azure function

I downloaded the code of an Azure Function created in the portal. Now I'm tryng to load a class in the main file (run.csx) using in the first line:

#load "..\shared\data.csx"

but i get the error:

 "run.csx(1,7): error CS1504: Source file '..\shared\data.csx' could not be opened -- Could not find file."

I added in the host.json:

"watchDirectories": [ "Shared" ]

I tried with uppercase, lowcase, put the class in the same folder of the run.csx but it doesn't work. I miss something?

Double check that your "Shared" folder is under D:\\home\\site\\wwwroot\\Shared . Note that the root of your function app is at D:\\home\\site\\wwwroot .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM