So I've made a small text-based game in C# but I'd like some music to it, I have tried this:
System.Media.SoundPlayer player = new System.Media.SoundPlayer();
player.SoundLocation = "c:\PathToMusic\..music.wav";
player.Play();
Which worked, but when I build my application to a .exe file it's not included so when the other person does not have that specific sound in the specific folder it won't work.
I have added the file to my Solution Explorer but have no idea what that file location is called.