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)
34t.OutputUrl.ShouldBe(string.Empty); 48t.OutputUrl.ShouldBe(t.InputUrl); 61t.OutputUrl.ShouldBe(string.Empty); 78t.OutputUrl.ShouldBe(new Uri(Path.Combine(Environment.CurrentDirectory, t.InputUrl)).AbsoluteUri); 105t.OutputUrl.ShouldBe(@"file://server/filename.ext"); 120t.OutputUrl.ShouldBe(new Uri(t.InputUrl).AbsoluteUri); 135t.OutputUrl.ShouldBe(new Uri(Environment.CurrentDirectory).AbsoluteUri); 149t.OutputUrl.ShouldBe(@"file:///usr/local/share"); 163t.OutputUrl.ShouldBe(@"file:///c:/folder/filename.ext"); 177t.OutputUrl.ShouldBe(@"https://" + Environment.MachineName.ToLowerInvariant() + "/Example/Path"); 191t.OutputUrl.ShouldBe(t.InputUrl); 205t.OutputUrl.ShouldBe(@"https://example.com/Path");