Activity overview
Latest activity by NatanD
Yes. I found 1 duplicate GUID. I fixed it, and now it works fine. Thank you!
Note. The snippetsĀ folder is a network-shared folder. var dup = Directory.GetFiles(dirPath)
.Select(f => f.Substring(f.IndexOf('-') + 1))
.GroupBy(f => f)
.Where(g => g.Count() > 1)
.Select(f => f.Key)
.ToList(); / comments
Yes. I found 1 duplicate GUID.I fixed it, and now it works fine.Thank you!
Note. The snippetsĀ folder is a network-shared folder.var dup = Directory.GetFiles(dirPath)
.Select(f => f.Substring(f....