16 references to IsReparsePoint
aspire (5)
Bundles\BundleService.cs (3)
501targets[dir] = ReparsePoint.IsReparsePoint(linkPath) ? ReparsePoint.GetTarget(linkPath) : null; 527if (Directory.Exists(linkPath) && !ReparsePoint.IsReparsePoint(linkPath)) 693if (!ReparsePoint.IsReparsePoint(linkPath))
Utils\ReparsePoint.cs (2)
65if (Exists(linkPath) && !IsReparsePoint(linkPath)) 525if (!IsReparsePoint(path))
Aspire.Cli.Tests (11)
BundleServiceIntegrationTests.cs (3)
59Assert.True(ReparsePoint.IsReparsePoint(bundleLink), "bundle/ should be a reparse point"); 374Assert.True(ReparsePoint.IsReparsePoint(bundleLink), "bundle/ should be a reparse point under the tool RID directory"); 438Assert.True(ReparsePoint.IsReparsePoint(bundleLink),
Layout\LayoutDiscoveryReparsePointTests.cs (1)
111Assert.True(ReparsePoint.IsReparsePoint(bundleLink));
Utils\ReparsePointTests.cs (7)
25Assert.True(ReparsePoint.IsReparsePoint(link)); 59Assert.True(ReparsePoint.IsReparsePoint(link)); 100Assert.False(ReparsePoint.IsReparsePoint(dir)); 107Assert.False(ReparsePoint.IsReparsePoint(Path.Combine(workspace.WorkspaceRoot.FullName, "nope"))); 221Assert.True(ReparsePoint.IsReparsePoint(link)); 371Assert.True(ReparsePoint.IsReparsePoint(link)); 449Assert.True(ReparsePoint.IsReparsePoint(link));