12 writes to InputUrl
Microsoft.Build.Tasks.UnitTests (12)
FormatUrl_Tests.cs (12)
30t.InputUrl = null; 44t.InputUrl = string.Empty; 74t.InputUrl = " "; 88t.InputUrl = " "; 101t.InputUrl = @"\\server\filename.ext"; 116t.InputUrl = Environment.CurrentDirectory; 131t.InputUrl = @"."; 145t.InputUrl = @"/usr/local/share"; 159t.InputUrl = @"c:\folder\filename.ext"; 173t.InputUrl = @"https://localhost/Example/Path"; 187t.InputUrl = @"https://example.com/Example/Path"; 201t.InputUrl = @"https://example.com/Example/../Path";
6 references to InputUrl
Microsoft.Build.Tasks.Core (2)
FormatUrl.cs (2)
24OutputUrl = InputUrl != null ? PathUtil.Format(InputUrl) : String.Empty;
Microsoft.Build.Tasks.UnitTests (4)
FormatUrl_Tests.cs (4)
46t.OutputUrl.ShouldBe(t.InputUrl); 76t.OutputUrl.ShouldBe(new Uri(Path.Combine(Environment.CurrentDirectory, t.InputUrl)).AbsoluteUri); 118t.OutputUrl.ShouldBe(new Uri(t.InputUrl).AbsoluteUri); 189t.OutputUrl.ShouldBe(t.InputUrl);