summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2022-01-31 10:40:46 +0100
committerGitHub <noreply@github.com>2022-01-31 10:40:46 +0100
commit08b5b5297f5c348d049cb3ffb4bb5220ee775e7d (patch)
tree6f4080a629733c045714d4de646114aff90a307a
parent5cdd84e4bcbaed7bfe06652a9634ca834a4fe3fd (diff)
parentde932c687d566f30d93ca405d6853f2ce6c45ee8 (diff)
downloadMPC-08b5b5297f5c348d049cb3ffb4bb5220ee775e7d.tar.gz
Merge pull request #154 from LukeMouse/luketmp
fix sln icon for vs vs 2019 and vs 2022
-rw-r--r--modules/VS2019WorkspaceCreator.pm2
-rw-r--r--modules/VS2022WorkspaceCreator.pm2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/VS2019WorkspaceCreator.pm b/modules/VS2019WorkspaceCreator.pm
index be265968..c6f364b5 100644
--- a/modules/VS2019WorkspaceCreator.pm
+++ b/modules/VS2019WorkspaceCreator.pm
@@ -29,7 +29,7 @@ sub pre_workspace {
print $fh '', $crlf,
'Microsoft Visual Studio Solution File, Format Version 12.00', $crlf;
$self->print_workspace_comment($fh,
- '# Visual Studio 16', $crlf,
+ '# Visual Studio Version 16', $crlf,
'#', $crlf,
'# This file was generated by MPC. Any changes made directly to', $crlf,
'# this file will be lost the next time it is generated.', $crlf,
diff --git a/modules/VS2022WorkspaceCreator.pm b/modules/VS2022WorkspaceCreator.pm
index 39393912..f3ad9d54 100644
--- a/modules/VS2022WorkspaceCreator.pm
+++ b/modules/VS2022WorkspaceCreator.pm
@@ -27,7 +27,7 @@ sub pre_workspace {
print $fh '', $crlf,
'Microsoft Visual Studio Solution File, Format Version 12.00', $crlf;
$self->print_workspace_comment($fh,
- '# Visual Studio 17', $crlf,
+ '# Visual Studio Version 17', $crlf,
'#', $crlf,
'# This file was generated by MPC. Any changes made directly to', $crlf,
'# this file will be lost the next time it is generated.', $crlf,