12 writes to InputUrl
Microsoft.Build.Tasks.UnitTests (12)
FormatUrl_Tests.cs (12)
31t.InputUrl = null; 45t.InputUrl = string.Empty; 75t.InputUrl = " "; 89t.InputUrl = " "; 102t.InputUrl = @"\\server\filename.ext"; 117t.InputUrl = Environment.CurrentDirectory; 132t.InputUrl = @"."; 146t.InputUrl = @"/usr/local/share"; 160t.InputUrl = @"c:\folder\filename.ext"; 174t.InputUrl = @"https://localhost/Example/Path"; 188t.InputUrl = @"https://example.com/Example/Path"; 202t.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)
47t.OutputUrl.ShouldBe(t.InputUrl); 77t.OutputUrl.ShouldBe(new Uri(Path.Combine(Environment.CurrentDirectory, t.InputUrl)).AbsoluteUri); 119t.OutputUrl.ShouldBe(new Uri(t.InputUrl).AbsoluteUri); 190t.OutputUrl.ShouldBe(t.InputUrl);