Skip to content
Christian Woltering edited this page May 14, 2024 · 6 revisions

Welcome to the MusicBrainz wiki!

Migration to v3

Version 3 removes all code that was marked obsolete in previous versions, specifically the static API and configuration. You should now use the MusicBrainzClient class instead. Take a look at the examples!

Additionally, the .API suffix was removed from the assembly and all namespaces. Fix the namespace change by removing the .API suffix in your using statements, for example using Hqub.MusicBrainz.API now becomes using Hqub.MusicBrainz. The name change of the assembly should be automatically picked up if you are using Nuget to manage package dependencies. Otherwise, you will have to manually fix the reference in your project files.

Examples

  1. Example: Artists
  2. Example: Releases
  3. Example: Release-Groups
  4. Example: Recordings
  5. Example: Browse Release-Groups
  6. Example: Fluent API
Clone this wiki locally