From e2c3009d890b54a6f88ff9ee33f79b269d9085c5 Mon Sep 17 00:00:00 2001 From: starkos Date: Sat, 5 Sep 2009 19:48:03 +0000 Subject: [PATCH] Fixed ManagedExtensions setting for Visual Studio --- CHANGES.txt | 3 ++- src/actions/vstudio/vs200x_vcproj.lua | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 57ba9512..b4c8d8c3 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -3,7 +3,8 @@ ----- - Added support for Apple Xcode 3 -- Changed arguments to GCC link step to fix static linking +- Changed arguments to GCC link step to fix static linking +- Fixed ManagedExtension setting for Visual Studio ------- diff --git a/src/actions/vstudio/vs200x_vcproj.lua b/src/actions/vstudio/vs200x_vcproj.lua index 5af1bd4a..8746d851 100644 --- a/src/actions/vstudio/vs200x_vcproj.lua +++ b/src/actions/vstudio/vs200x_vcproj.lua @@ -524,7 +524,7 @@ _p('\t\t\tConfigurationType="%s"', _VS.cfgtype(cfg)) _p('\t\t\tCharacterSet="%s"', iif(cfg.flags.Unicode, 1, 2)) if cfg.flags.Managed then - _p('\t\t\tManagedExtensions="true"') + _p('\t\t\tManagedExtensions="1"') end _p('\t\t\t>')