vs: remove regen project dependency from solution file

We now set up the project as a reference inside the vcxproj, so the
explicit order in the solution is not needed anymore.
This commit is contained in:
Nicolas Schneider 2019-01-26 16:31:00 +01:00 committed by Jussi Pakkanen
parent a0112cfb26
commit ccdac894ee
1 changed files with 0 additions and 2 deletions

View File

@ -312,8 +312,6 @@ class Vs2010Backend(backends.Backend):
target_dict, recursive=True)
ofile.write('\tProjectSection(ProjectDependencies) = '
'postProject\n')
regen_guid = self.environment.coredata.regen_guid
ofile.write('\t\t{%s} = {%s}\n' % (regen_guid, regen_guid))
for dep in all_deps.keys():
guid = self.environment.coredata.target_guids[dep]
ofile.write('\t\t{%s} = {%s}\n' % (guid, guid))