Отладил парчинг корневого PropertyGroup

This commit is contained in:
rzaitov 2013-11-13 15:54:40 +04:00
parent 3e048e6d74
commit 98022322ad
1 changed files with 2 additions and 2 deletions

View File

@ -58,8 +58,8 @@ class CsprojPatcher:
def IsValueFitFor(self, config_name, condition_attr_value):
if condition_attr_value is None and config_name == '':
result = True
if condition_attr_value is None:
result = config_name == '' or config_name is None
else:
# '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator'
configValue = condition_attr_value.split('==')[1]