Adding reference to another project from visual studio code

后端 未结 4 2006
孤独总比滥情好
孤独总比滥情好 2020-12-28 16:12

If a library (eg, on github) doesn\'t distribute itself via a nuget package, I\'d have to manually include it as a reference, correct? I see a lot of reference posts for how

4条回答
  •  無奈伤痛
    2020-12-28 16:56

    You can open .csproj file of the project you want to add reference to and add project reference like this:

    
        
    
    

    If the ItemGroup for ProjectReference already exist then you can just add to it.

    Example:

    
        
    
    

提交回复
热议问题