- Renombrado de archivos en el proyecto y en scripts
This commit is contained in:
@@ -59,7 +59,7 @@ Else
|
|||||||
oVFP9.DoCmd( "SET PROCEDURE TO '" & cEXETool & "'" )
|
oVFP9.DoCmd( "SET PROCEDURE TO '" & cEXETool & "'" )
|
||||||
oVFP9.DoCmd( "PUBLIC oFoxBin2prg" )
|
oVFP9.DoCmd( "PUBLIC oFoxBin2prg" )
|
||||||
oVFP9.DoCmd( "oFoxBin2prg = CREATEOBJECT('c_foxbin2prg')" )
|
oVFP9.DoCmd( "oFoxBin2prg = CREATEOBJECT('c_foxbin2prg')" )
|
||||||
oVFP9.DoCmd( "oFoxBin2prg.cargar_frm_avance()" )
|
oVFP9.DoCmd( "oFoxBin2prg.loadProgressbarForm()" )
|
||||||
oVFP9.DoCmd( "oFoxBin2prg.o_frm_avance.Caption = '" & FileSystemObject.GetBaseName( WScript.ScriptName ) & " - ' + oFoxBin2Prg.c_loc_process_progress" )
|
oVFP9.DoCmd( "oFoxBin2prg.o_frm_avance.Caption = '" & FileSystemObject.GetBaseName( WScript.ScriptName ) & " - ' + oFoxBin2Prg.c_loc_process_progress" )
|
||||||
|
|
||||||
For i = 0 To WScript.Arguments.Count-1
|
For i = 0 To WScript.Arguments.Count-1
|
||||||
@@ -87,13 +87,13 @@ Else
|
|||||||
oVFP9.DoCmd( "oFoxBin2prg.o_frm_avance.Caption = '" & FileSystemObject.GetBaseName( WScript.ScriptName ) & " - ' + oFoxBin2Prg.c_loc_process_progress + ' (Press Esc to Cancel)'" )
|
oVFP9.DoCmd( "oFoxBin2prg.o_frm_avance.Caption = '" & FileSystemObject.GetBaseName( WScript.ScriptName ) & " - ' + oFoxBin2Prg.c_loc_process_progress + ' (Press Esc to Cancel)'" )
|
||||||
|
|
||||||
For i = 1 To nFile_Count
|
For i = 1 To nFile_Count
|
||||||
oVFP9.DoCmd( "oFoxBin2Prg.AvanceDelProceso(oFoxBin2Prg.c_loc_processing_file + ' " & aFiles(i) & "...', " & i & ", " & nFile_Count & ", 0)" )
|
oVFP9.DoCmd( "oFoxBin2Prg.ProcessProgress(oFoxBin2Prg.c_loc_processing_file + ' " & aFiles(i) & "...', " & i & ", " & nFile_Count & ", 0)" )
|
||||||
cFlagRecompile = "'" & FileSystemObject.GetParentFolderName( aFiles(i) ) & "'"
|
cFlagRecompile = "'" & FileSystemObject.GetParentFolderName( aFiles(i) ) & "'"
|
||||||
|
|
||||||
If nDebug = 0 Or nDebug = 2 Then
|
If nDebug = 0 Or nDebug = 2 Then
|
||||||
cCMD = "oFoxBin2prg.ejecutar( '" & aFiles(i) & "' )"
|
cCMD = "oFoxBin2prg.execute( '" & aFiles(i) & "' )"
|
||||||
Else
|
Else
|
||||||
cCMD = "oFoxBin2prg.ejecutar( '" & aFiles(i) & "','BIN2PRG','0','0'," _
|
cCMD = "oFoxBin2prg.execute( '" & aFiles(i) & "','BIN2PRG','0','0'," _
|
||||||
& cFlagDontShowErrMsg & "," & cFlagGenerateLog & ",'1','','',.F.,''," _
|
& cFlagDontShowErrMsg & "," & cFlagGenerateLog & ",'1','','',.F.,''," _
|
||||||
& cFlagRecompile & "," & cFlagNoTimestamps & " )"
|
& cFlagRecompile & "," & cFlagNoTimestamps & " )"
|
||||||
End If
|
End If
|
||||||
@@ -143,7 +143,7 @@ Private Sub scanDirs( tcArgument )
|
|||||||
Dim omFolder, oFolder
|
Dim omFolder, oFolder
|
||||||
If FileSystemObject.FolderExists( tcArgument ) Then
|
If FileSystemObject.FolderExists( tcArgument ) Then
|
||||||
'-- Es un directorio
|
'-- Es un directorio
|
||||||
oVFP9.DoCmd( "oFoxBin2Prg.AvanceDelProceso('Scanning file and directory information on " & tcArgument & "...', 0, 0, 0)" )
|
oVFP9.DoCmd( "oFoxBin2Prg.ProcessProgress('Scanning file and directory information on " & tcArgument & "...', 0, 0, 0)" )
|
||||||
Set omFolder = FileSystemObject.GetFolder( tcArgument )
|
Set omFolder = FileSystemObject.GetFolder( tcArgument )
|
||||||
For Each oFile IN omFolder.Files
|
For Each oFile IN omFolder.Files
|
||||||
evaluateFile( oFile.Path )
|
evaluateFile( oFile.Path )
|
||||||
@@ -160,12 +160,12 @@ End Sub
|
|||||||
|
|
||||||
Private Sub evaluateFile( tcFile )
|
Private Sub evaluateFile( tcFile )
|
||||||
'lcExt = UCase( FileSystemObject.GetExtensionName( tcFile ) )
|
'lcExt = UCase( FileSystemObject.GetExtensionName( tcFile ) )
|
||||||
'oVFP9.DoCmd( "oFoxBin2prg.EvaluarConfiguracion( '1', '1', '', '', '', '', '', '', '" & tcFile & "' )" )
|
'oVFP9.DoCmd( "oFoxBin2prg.evaluateConfiguration( '1', '1', '', '', '', '', '', '', '" & tcFile & "' )" )
|
||||||
|
|
||||||
'PROCEDURE EvaluarConfiguracion
|
'PROCEDURE evaluateConfiguration
|
||||||
' LPARAMETERS tcDontShowProgress, tcDontShowErrors, tcFlagNoTimestamps, tcDebug, tcRecompile, tcExtraBackupLevels ;
|
' LPARAMETERS tcDontShowProgress, tcDontShowErrors, tcFlagNoTimestamps, tcDebug, tcRecompile, tcExtraBackupLevels ;
|
||||||
' , tcClearUniqueID, tcOptimizeByFilestamp, tc_InputFile
|
' , tcClearUniqueID, tcOptimizeByFilestamp, tc_InputFile
|
||||||
'If oVFP9.Eval("oFoxBin2prg.TieneSoporte_Bin2Prg('" & lcExt & "')") Then
|
'If oVFP9.Eval("oFoxBin2prg.hasSupport_Bin2Prg('" & lcExt & "')") Then
|
||||||
nFile_Count = nFile_Count + 1
|
nFile_Count = nFile_Count + 1
|
||||||
ReDim Preserve aFiles(nFile_Count)
|
ReDim Preserve aFiles(nFile_Count)
|
||||||
aFiles(nFile_Count) = tcFile
|
aFiles(nFile_Count) = tcFile
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ Else
|
|||||||
oVFP9.DoCmd( "SET PROCEDURE TO '" & cEXETool & "'" )
|
oVFP9.DoCmd( "SET PROCEDURE TO '" & cEXETool & "'" )
|
||||||
oVFP9.DoCmd( "PUBLIC oFoxBin2prg" )
|
oVFP9.DoCmd( "PUBLIC oFoxBin2prg" )
|
||||||
oVFP9.DoCmd( "oFoxBin2prg = CREATEOBJECT('c_foxbin2prg')" )
|
oVFP9.DoCmd( "oFoxBin2prg = CREATEOBJECT('c_foxbin2prg')" )
|
||||||
oVFP9.DoCmd( "oFoxBin2prg.cargar_frm_avance()" )
|
oVFP9.DoCmd( "oFoxBin2prg.loadProgressbarForm()" )
|
||||||
oVFP9.DoCmd( "oFoxBin2prg.o_frm_avance.Caption = '" & FileSystemObject.GetBaseName( WScript.ScriptName ) & " - ' + oFoxBin2Prg.c_loc_process_progress" )
|
oVFP9.DoCmd( "oFoxBin2prg.o_frm_avance.Caption = '" & FileSystemObject.GetBaseName( WScript.ScriptName ) & " - ' + oFoxBin2Prg.c_loc_process_progress" )
|
||||||
|
|
||||||
For i = 0 To WScript.Arguments.Count-1
|
For i = 0 To WScript.Arguments.Count-1
|
||||||
@@ -93,13 +93,13 @@ Else
|
|||||||
oVFP9.DoCmd( "oFoxBin2prg.o_frm_avance.Caption = '" & FileSystemObject.GetBaseName( WScript.ScriptName ) & " - ' + oFoxBin2Prg.c_loc_process_progress + ' (Press Esc to Cancel)'" )
|
oVFP9.DoCmd( "oFoxBin2prg.o_frm_avance.Caption = '" & FileSystemObject.GetBaseName( WScript.ScriptName ) & " - ' + oFoxBin2Prg.c_loc_process_progress + ' (Press Esc to Cancel)'" )
|
||||||
|
|
||||||
For i = 1 To nFile_Count
|
For i = 1 To nFile_Count
|
||||||
oVFP9.DoCmd( "oFoxBin2Prg.AvanceDelProceso(oFoxBin2Prg.c_loc_processing_file + ' " & aFiles(i) & "...', " & i & ", " & nFile_Count & ", 0)" )
|
oVFP9.DoCmd( "oFoxBin2Prg.ProcessProgress(oFoxBin2Prg.c_loc_processing_file + ' " & aFiles(i) & "...', " & i & ", " & nFile_Count & ", 0)" )
|
||||||
cFlagRecompile = "'" & FileSystemObject.GetParentFolderName( aFiles(i) ) & "'"
|
cFlagRecompile = "'" & FileSystemObject.GetParentFolderName( aFiles(i) ) & "'"
|
||||||
|
|
||||||
If nDebug = 0 Or nDebug = 2 Then
|
If nDebug = 0 Or nDebug = 2 Then
|
||||||
cCMD = "oFoxBin2prg.ejecutar( '" & aFiles(i) & "' )"
|
cCMD = "oFoxBin2prg.execute( '" & aFiles(i) & "' )"
|
||||||
Else
|
Else
|
||||||
cCMD = "oFoxBin2prg.ejecutar( '" & aFiles(i) & "','PRG2BIN','0','0'," _
|
cCMD = "oFoxBin2prg.execute( '" & aFiles(i) & "','PRG2BIN','0','0'," _
|
||||||
& cFlagDontShowErrMsg & "," & cFlagGenerateLog & ",'1','','',.F.,''," _
|
& cFlagDontShowErrMsg & "," & cFlagGenerateLog & ",'1','','',.F.,''," _
|
||||||
& cFlagRecompile & "," & cFlagNoTimestamps & " )"
|
& cFlagRecompile & "," & cFlagNoTimestamps & " )"
|
||||||
End If
|
End If
|
||||||
@@ -149,7 +149,7 @@ Private Sub scanDirs( tcArgument )
|
|||||||
Dim omFolder, oFolder
|
Dim omFolder, oFolder
|
||||||
If FileSystemObject.FolderExists( tcArgument ) Then
|
If FileSystemObject.FolderExists( tcArgument ) Then
|
||||||
'-- Es un directorio
|
'-- Es un directorio
|
||||||
oVFP9.DoCmd( "oFoxBin2Prg.AvanceDelProceso('Scanning file and directory information on " & tcArgument & "...', 0, 0, 0)" )
|
oVFP9.DoCmd( "oFoxBin2Prg.ProcessProgress('Scanning file and directory information on " & tcArgument & "...', 0, 0, 0)" )
|
||||||
Set omFolder = FileSystemObject.GetFolder( tcArgument )
|
Set omFolder = FileSystemObject.GetFolder( tcArgument )
|
||||||
For Each oFile IN omFolder.Files
|
For Each oFile IN omFolder.Files
|
||||||
evaluateFile( oFile.Path )
|
evaluateFile( oFile.Path )
|
||||||
@@ -171,11 +171,11 @@ Private Sub evaluateFile( tcFile )
|
|||||||
'lnPoints = UBound(laPoints)
|
'lnPoints = UBound(laPoints)
|
||||||
'-- No proceso los archivos con m<>s de un punto (clases en archivos individuales) por performance
|
'-- No proceso los archivos con m<>s de un punto (clases en archivos individuales) por performance
|
||||||
'If lnPoints = 1 Then
|
'If lnPoints = 1 Then
|
||||||
'PROCEDURE EvaluarConfiguracion
|
'PROCEDURE evaluateConfiguration
|
||||||
' LPARAMETERS tcDontShowProgress, tcDontShowErrors, tcFlagNoTimestamps, tcDebug, tcRecompile, tcExtraBackupLevels ;
|
' LPARAMETERS tcDontShowProgress, tcDontShowErrors, tcFlagNoTimestamps, tcDebug, tcRecompile, tcExtraBackupLevels ;
|
||||||
' , tcClearUniqueID, tcOptimizeByFilestamp, tc_InputFile
|
' , tcClearUniqueID, tcOptimizeByFilestamp, tc_InputFile
|
||||||
'oVFP9.DoCmd( "oFoxBin2prg.EvaluarConfiguracion( '1', '1', '', '', '', '', '', '', '" & tcFile & "' )" )
|
'oVFP9.DoCmd( "oFoxBin2prg.evaluateConfiguration( '1', '1', '', '', '', '', '', '', '" & tcFile & "' )" )
|
||||||
'If oVFP9.Eval("oFoxBin2prg.TieneSoporte_Prg2Bin('" & lcExt & "')") Then
|
'If oVFP9.Eval("oFoxBin2prg.hasSupport_Prg2Bin('" & lcExt & "')") Then
|
||||||
nFile_Count = nFile_Count + 1
|
nFile_Count = nFile_Count + 1
|
||||||
ReDim Preserve aFiles(nFile_Count)
|
ReDim Preserve aFiles(nFile_Count)
|
||||||
aFiles(nFile_Count) = tcFile
|
aFiles(nFile_Count) = tcFile
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ Else
|
|||||||
oVFP9.DoCmd( "SET PROCEDURE TO '" & cEXETool & "'" )
|
oVFP9.DoCmd( "SET PROCEDURE TO '" & cEXETool & "'" )
|
||||||
oVFP9.DoCmd( "PUBLIC oFoxBin2prg" )
|
oVFP9.DoCmd( "PUBLIC oFoxBin2prg" )
|
||||||
oVFP9.DoCmd( "oFoxBin2prg = CREATEOBJECT('c_foxbin2prg')" )
|
oVFP9.DoCmd( "oFoxBin2prg = CREATEOBJECT('c_foxbin2prg')" )
|
||||||
oVFP9.DoCmd( "oFoxBin2prg.cargar_frm_avance()" )
|
oVFP9.DoCmd( "oFoxBin2prg.loadProgressbarForm()" )
|
||||||
oVFP9.DoCmd( "oFoxBin2prg.o_frm_avance.Caption = '" & FileSystemObject.GetBaseName( WScript.ScriptName ) & " - ' + oFoxBin2Prg.c_loc_process_progress" )
|
oVFP9.DoCmd( "oFoxBin2prg.o_frm_avance.Caption = '" & FileSystemObject.GetBaseName( WScript.ScriptName ) & " - ' + oFoxBin2Prg.c_loc_process_progress" )
|
||||||
|
|
||||||
cFlagGenerateLog = "'0'"
|
cFlagGenerateLog = "'0'"
|
||||||
@@ -87,9 +87,9 @@ Else
|
|||||||
oVFP9.DoCmd( "oFoxBin2prg.o_frm_avance.Caption = '" & FileSystemObject.GetBaseName( WScript.ScriptName ) & " - ' + oFoxBin2Prg.c_loc_process_progress + ' (Press Esc to Cancel)'" )
|
oVFP9.DoCmd( "oFoxBin2prg.o_frm_avance.Caption = '" & FileSystemObject.GetBaseName( WScript.ScriptName ) & " - ' + oFoxBin2Prg.c_loc_process_progress + ' (Press Esc to Cancel)'" )
|
||||||
|
|
||||||
If nDebug = 0 Or nDebug = 2 Then
|
If nDebug = 0 Or nDebug = 2 Then
|
||||||
cCMD = "oFoxBin2prg.ejecutar( '" & WScript.Arguments(0) & "' )"
|
cCMD = "oFoxBin2prg.execute( '" & WScript.Arguments(0) & "' )"
|
||||||
Else
|
Else
|
||||||
cCMD = "oFoxBin2prg.ejecutar( '" & WScript.Arguments(0) & "','INTERACTIVE','0','0'," _
|
cCMD = "oFoxBin2prg.execute( '" & WScript.Arguments(0) & "','INTERACTIVE','0','0'," _
|
||||||
& cFlagDontShowErrMsg & "," & cFlagGenerateLog & ",'1','','',.F.,''," _
|
& cFlagDontShowErrMsg & "," & cFlagGenerateLog & ",'1','','',.F.,''," _
|
||||||
& cFlagRecompile & "," & cNoTimestamps & " )"
|
& cFlagRecompile & "," & cNoTimestamps & " )"
|
||||||
End If
|
End If
|
||||||
|
|||||||
@@ -106,14 +106,14 @@ WITH loProject.FILES
|
|||||||
.ADD('tests\ut__foxbin2prg__c_conversor_base__dobackup.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
.ADD('tests\ut__foxbin2prg__c_conversor_base__dobackup.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
||||||
.ADD('tests\ut__foxbin2prg__c_conversor_base__get_separatedpropandvalue.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
.ADD('tests\ut__foxbin2prg__c_conversor_base__get_separatedpropandvalue.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
||||||
.ADD('tests\ut__foxbin2prg__c_conversor_base__gettimestamp.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
.ADD('tests\ut__foxbin2prg__c_conversor_base__gettimestamp.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
||||||
.ADD('tests\ut__foxbin2prg__c_conversor_base__identificarbloquesdeexclusion.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
.ADD('tests\ut__foxbin2prg__c_conversor_base__identifyexclusionblocks.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
||||||
.ADD('tests\ut__foxbin2prg__c_conversor_base__normalizarvalorpropiedad.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
.ADD('tests\ut__foxbin2prg__c_conversor_base__normalizepropertyvalue.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
||||||
.ADD('tests\ut__foxbin2prg__c_conversor_base__rowtimestamp.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
.ADD('tests\ut__foxbin2prg__c_conversor_base__rowtimestamp.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
||||||
.ADD('tests\ut__foxbin2prg__c_conversor_bin_a_prg__get_propsandvaluesfrom_properties.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
.ADD('tests\ut__foxbin2prg__c_conversor_bin_a_prg__get_propsandvaluesfrom_properties.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
||||||
.ADD('tests\ut__foxbin2prg__c_conversor_bin_a_prg__indentarmemo.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
.ADD('tests\ut__foxbin2prg__c_conversor_bin_a_prg__indentmemo.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
||||||
.ADD('tests\ut__foxbin2prg__c_conversor_prg_a_bin__analizarasignacion_tag_indicado.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
.ADD('tests\ut__foxbin2prg__c_conversor_prg_a_bin__analyzeassignmentof_tag.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
||||||
.ADD('tests\ut__foxbin2prg__c_conversor_prg_a_bin__insert_allobjects.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
.ADD('tests\ut__foxbin2prg__c_conversor_prg_a_bin__insert_allobjects.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
||||||
.ADD('tests\ut__foxbin2prg__c_foxbin2prg__evaluarconfiguracion.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
.ADD('tests\ut__foxbin2prg__c_foxbin2prg__evaluateconfiguration.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
||||||
.ADD('tests\ut__foxbin2prg__c_foxbin2prg__filenamefoundinfilter.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
.ADD('tests\ut__foxbin2prg__c_foxbin2prg__filenamefoundinfilter.prg') && *< FileMetadata: Type="P" Cpid="1252" Timestamp="0" ID="0" ObjRev="544" />
|
||||||
*</BuildProj>
|
*</BuildProj>
|
||||||
|
|
||||||
@@ -138,14 +138,14 @@ WITH loProject.FILES
|
|||||||
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_conversor_base__dobackup.prg').Exclude = .T.
|
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_conversor_base__dobackup.prg').Exclude = .T.
|
||||||
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_conversor_base__get_separatedpropandvalue.prg').Exclude = .T.
|
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_conversor_base__get_separatedpropandvalue.prg').Exclude = .T.
|
||||||
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_conversor_base__gettimestamp.prg').Exclude = .T.
|
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_conversor_base__gettimestamp.prg').Exclude = .T.
|
||||||
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_conversor_base__identificarbloquesdeexclusion.prg').Exclude = .T.
|
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_conversor_base__identifyexclusionblocks.prg').Exclude = .T.
|
||||||
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_conversor_base__normalizarvalorpropiedad.prg').Exclude = .T.
|
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_conversor_base__normalizepropertyvalue.prg').Exclude = .T.
|
||||||
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_conversor_base__rowtimestamp.prg').Exclude = .T.
|
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_conversor_base__rowtimestamp.prg').Exclude = .T.
|
||||||
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_conversor_bin_a_prg__get_propsandvaluesfrom_properties.prg').Exclude = .T.
|
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_conversor_bin_a_prg__get_propsandvaluesfrom_properties.prg').Exclude = .T.
|
||||||
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_conversor_bin_a_prg__indentarmemo.prg').Exclude = .T.
|
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_conversor_bin_a_prg__indentmemo.prg').Exclude = .T.
|
||||||
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_conversor_prg_a_bin__analizarasignacion_tag_indicado.prg').Exclude = .T.
|
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_conversor_prg_a_bin__analyzeassignmentof_tag.prg').Exclude = .T.
|
||||||
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_conversor_prg_a_bin__insert_allobjects.prg').Exclude = .T.
|
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_conversor_prg_a_bin__insert_allobjects.prg').Exclude = .T.
|
||||||
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_foxbin2prg__evaluarconfiguracion.prg').Exclude = .T.
|
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_foxbin2prg__evaluateconfiguration.prg').Exclude = .T.
|
||||||
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_foxbin2prg__filenamefoundinfilter.prg').Exclude = .T.
|
.ITEM(lcCurdir + 'tests\ut__foxbin2prg__c_foxbin2prg__filenamefoundinfilter.prg').Exclude = .T.
|
||||||
*</ExcludedFiles>
|
*</ExcludedFiles>
|
||||||
|
|
||||||
|
|||||||
BIN
foxbin2prg.pjt
BIN
foxbin2prg.pjt
Binary file not shown.
BIN
foxbin2prg.pjx
BIN
foxbin2prg.pjx
Binary file not shown.
Reference in New Issue
Block a user