Skip to content

Commit

Permalink
Fix bug: folders mistakenly marked as working files only
Browse files Browse the repository at this point in the history
  • Loading branch information
lwchkg committed Dec 1, 2020
1 parent ce97f90 commit 5f409bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion TeamsAssignmentExplorer/DirAndFileScanner.cs
Expand Up @@ -69,7 +69,7 @@ public static List<HomeworkItem> GetHomeworkList(string basePath)
homeworkMap.AddOrUpdate(Path.GetFileName(homeworkDir),
isWorkingFiles,
(_, value) => value || isWorkingFiles);
(_, value) => value && isWorkingFiles);
}
});
}
Expand Down
4 changes: 2 additions & 2 deletions TeamsAssignmentExplorer/Properties/AssemblyInfo.cs
Expand Up @@ -49,5 +49,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
[assembly: AssemblyVersion("1.1.1.0")]
[assembly: AssemblyFileVersion("1.1.1.0")]

0 comments on commit 5f409bc

Please sign in to comment.