Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Domain authored Sep 9, 2024
1 parent 1dfec90 commit f2412c9
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions xmake/plugins/project/vstudio/impl/vs201x_vcxproj_filters.lua
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,6 @@ function _make_filter(filepath, target, vcxprojdir)
filter = path.normalize(path.directory(fileitem))
end
end
if filter and filter == '.' then
filter = nil
end
goto found_filter
end
end
Expand All @@ -118,9 +115,9 @@ function _make_filter(filepath, target, vcxprojdir)
if filter then
filter = _strip_dotdirs(filter)
end
if filter and filter == '.' then
filter = nil
end
end
if filter and filter == '.' then
filter = nil
end
return filter
end
Expand Down

0 comments on commit f2412c9

Please sign in to comment.