Post

The binding types in csproj

What types of binding are possible in csproj

  1. project dotnet add reference

  2. package dotnet add package

  3. dll

    1
    2
    3
    4
    5
    
     <ItemGroup>
         <Reference Include="Microsoft.DotNet.RemoteExecutor">
           <HintPath>..\Microsoft.DotNet.RemoteExecutor\src\bin\Release\net9.0\publish\Microsoft.DotNet.RemoteExecutor.dll</HintPath>
         </Reference>
       </ItemGroup>
    
  4. files

    1
    
      <Compile Include="$(CommonTestPath)System\Diagnostics\Tracing\TestEventListener.cs" Link="Common\System\Diagnostics\Tracing\TestEventListener.cs" />
    
This post is licensed under CC BY 4.0 by the author.