Skip to content

Commit

Permalink
Fixed: Project Properties Manifest option
Browse files Browse the repository at this point in the history
  • Loading branch information
XusinboyBekchanov committed Apr 15, 2022
1 parent 6446780 commit e7bc375
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/TabWindow.bas
Expand Up @@ -6386,11 +6386,11 @@ Sub Versioning(ByRef FileName As WString, ByRef sFirstLine As WString, ByRef Pro
End If
End If
End If
ElseIf StartsWith(LCase(sLine), "1 24 ""./manifest.xml""") AndAlso Project->Manifest = False Then
WLet(sLines, *sLines & NewLine & "//1 24 ""./Manifest.xml""")
ElseIf StartsWith(LCase(sLine), "1 24 ") AndAlso Project->Manifest = False Then
WLet(sLines, *sLines & NewLine & "//" & sLine)
bChanged = True
ElseIf StartsWith(LCase(sLine), "//1 24 ""./manifest.xml""") AndAlso Project->Manifest Then
WLet(sLines, *sLines & NewLine & "1 24 ""./Manifest.xml""")
ElseIf StartsWith(LCase(sLine), "//1 24 ") AndAlso Project->Manifest Then
WLet(sLines, *sLines & NewLine & Mid(sLine, 3))
bChanged = True
End If
End If
Expand Down

0 comments on commit e7bc375

Please sign in to comment.