File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ The `dotnet add reference` command provides a convenient option to add project r
29
29
<ProjectReference Include =" app.csproj" />
30
30
<ProjectReference Include =" ..\lib2\lib2.csproj" />
31
31
<ProjectReference Include =" ..\lib1\lib1.csproj" />
32
+ <ProjectReference Include =" ..\lib3\lib3.fsproj" />
32
33
</ItemGroup >
33
34
```
34
35
@@ -72,6 +73,12 @@ There's no CLI command to add a reference to an assembly that isn't in a project
72
73
dotnet add app/app.csproj reference lib/lib.csproj
73
74
```
74
75
76
+ - Add a compatible .NET language (for example, F#) project reference, which works in both directions:
77
+
78
+ ``` dotnetcli
79
+ dotnet add app/app.csproj reference lib/lib.fsproj
80
+ ```
81
+
75
82
- Add multiple project references to the project in the current directory:
76
83
77
84
``` dotnetcli
You can’t perform that action at this time.
0 commit comments