1 write to OutputUrl
Microsoft.Build.Tasks.Core (1)
FormatUrl.cs (1)
24OutputUrl = InputUrl != null ? PathUtil.Format(InputUrl) : String.Empty;
12 references to OutputUrl
Microsoft.Build.Tasks.UnitTests (12)
FormatUrl_Tests.cs (12)
33t.OutputUrl.ShouldBe(string.Empty); 47t.OutputUrl.ShouldBe(t.InputUrl); 60t.OutputUrl.ShouldBe(string.Empty); 77t.OutputUrl.ShouldBe(new Uri(Path.Combine(Environment.CurrentDirectory, t.InputUrl)).AbsoluteUri); 104t.OutputUrl.ShouldBe(@"file://server/filename.ext"); 119t.OutputUrl.ShouldBe(new Uri(t.InputUrl).AbsoluteUri); 134t.OutputUrl.ShouldBe(new Uri(Environment.CurrentDirectory).AbsoluteUri); 148t.OutputUrl.ShouldBe(@"file:///usr/local/share"); 162t.OutputUrl.ShouldBe(@"file:///c:/folder/filename.ext"); 176t.OutputUrl.ShouldBe(@"https://" + Environment.MachineName.ToLowerInvariant() + "/Example/Path"); 190t.OutputUrl.ShouldBe(t.InputUrl); 204t.OutputUrl.ShouldBe(@"https://example.com/Path");