I have been working with your tutorials for a little while, and was really excited when you posted the script to get XNA working in Visual Studio 2013.
However, I am having a problem. When I try to create a new blank XNA project, I get 12 errors and 11 warnings, all relating to this error:
Warning 1 The primary reference "System", which is a framework assembly, could not be resolved in the currently targeted framework. ".NETFramework,Version=v4.0,Profile=Client". To resolve this problem, either remove the reference "System" or retarget your application to a framework version which contains "System".
The other "using" statements are all failing because they refer to elements of System, and thus the entire build is failing because it can't find any types or namespaces.
Error 12 The type or namespace name 'Xna' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)
Did something mess up with my script, or am I missing some version of System that I need to reference in the program for this to run?