1 write to OutputUrl
Microsoft.Build.Tasks.Core (1)
FormatUrl.cs (1)
24
OutputUrl
= InputUrl != null ? PathUtil.Format(InputUrl) : String.Empty;
12 references to OutputUrl
Microsoft.Build.Tasks.UnitTests (12)
FormatUrl_Tests.cs (12)
32
t.
OutputUrl
.ShouldBe(string.Empty);
46
t.
OutputUrl
.ShouldBe(t.InputUrl);
59
t.
OutputUrl
.ShouldBe(string.Empty);
76
t.
OutputUrl
.ShouldBe(new Uri(Path.Combine(Environment.CurrentDirectory, t.InputUrl)).AbsoluteUri);
103
t.
OutputUrl
.ShouldBe(@"file://server/filename.ext");
118
t.
OutputUrl
.ShouldBe(new Uri(t.InputUrl).AbsoluteUri);
133
t.
OutputUrl
.ShouldBe(new Uri(Environment.CurrentDirectory).AbsoluteUri);
147
t.
OutputUrl
.ShouldBe(@"file:///usr/local/share");
161
t.
OutputUrl
.ShouldBe(@"file:///c:/folder/filename.ext");
175
t.
OutputUrl
.ShouldBe(@"https://" + Environment.MachineName.ToLowerInvariant() + "/Example/Path");
189
t.
OutputUrl
.ShouldBe(t.InputUrl);
203
t.
OutputUrl
.ShouldBe(@"https://example.com/Path");