Skip to content

Version 2.0.0 breaking changes

The following breaking changes were introduced with version 2.0.0:

  1. To bring the .NET agent in line with other agents, the package namespace and entry class have changed:

    Before v2.0.0:

    using NerdVision;
    
    NV.Start();
    

    After v2.0.0:

    using Nerd.Vision;
    
    NerdVision.Start();