VSCode c# add reference to custom assembly

前端 未结 3 2137
长情又很酷
长情又很酷 2021-01-11 15:04

in Visual Studio Code I simply want to add a reference to an custom c# assembly like

\"../libs/mylib.dll\"

how can I add this

3条回答
  •  悲&欢浪女
    2021-01-11 16:00

    simpler, just add the following:

    1) modify the myproject.csproj file

        
         
           ..\Dlls\DllComunVb2008.dll
         
        
    

    2) Add the using of the library you are going to use. Example: using Dllcomun;

提交回复
热议问题