Csharp build systems

From wikinotes

Depencencies

yourproject.csproj

<Project Sdk="Microsoft.NET.Sdk">
  <!-- ...project config... -->

  <ItemGroup>
    <PackageReference Include="Newtonsoft.Json" Version="9.0.1" />  <!-- dependency -->
  </ItemGroup>
</Project>