That means that your project is referencing either NuGet packages or other projects and across the packages/projects multiple items are trying to use different versions of the assembly System.Numerics.Vectors
. The compiler cannot figure out which one to use so it picked one. This is just a warning to let you know the compiler made a decision. However the build order determines which one actually gets dropped into your output directory and if it doesn't line up with what the compiler chose you get a runtime error.
The correct solution to this is to add a binding redirect in your application's configuration file. Visual Studio can auto-generate this for you. Go to the Error List window and you should see this warning. It should tell you to double click the warning and it'll fix the problem for you. This should resolve the error. If you don't have that option for some reason then you can fix it manually by editing your configuration file instead but for now we'll assume this will work.
Note that this is only an option if the warning is occurring within your executable project. If it is happening on a class library then the correct option is to add an explicit NuGet dependency on System.Numerics.Vectors
within the project which will resolve the issue as well.
Ultimately you'll want to make sure your packages and projects are using the latest version by using the Manage NuGet for Solution in Solution Explorer to make this easier.