Skip to content

Commit 44700a2

Browse files
committed
Remove reference to System.Web that was only used by a documentation comment
1 parent 5d08de2 commit 44700a2

3 files changed

Lines changed: 1 addition & 10 deletions

File tree

src/corelib/Core/UriPart.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
namespace net.openstack.Core
22
{
3-
extern alias web;
4-
using HttpUtility = web.System.Web.HttpUtility;
5-
63
/// <summary>
74
/// Represents a specific part of a URI.
85
/// </summary>
@@ -18,7 +15,7 @@ public enum UriPart
1815
/// Represents a non-specific URL part, where all characters except unreserved characters and the characters <c>(</c>, <c>)</c>, <c>!</c>, and <c>*</c> are percent-encoded.
1916
/// </summary>
2017
/// <remarks>
21-
/// When used with <see cref="UriUtility.UriEncode(string, UriPart)"/>, this URI part matches the behavior of <see cref="HttpUtility.UrlEncode(string)"/>, with the exception of space characters (this method percent-encodes space characters as <c>%20</c>).
18+
/// When used with <see cref="UriUtility.UriEncode(string, UriPart)"/>, this URI part matches the behavior of <see cref="M:System.Web.HttpUtility.UrlEncode(string)"/>, with the exception of space characters (this method percent-encodes space characters as <c>%20</c>).
2219
/// </remarks>
2320
AnyUrl,
2421

src/corelib/corelib.v3.5.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,6 @@
5757
<Reference Include="System.Threading">
5858
<HintPath>..\packages\TaskParallelLibrary.1.0.2856.0\lib\Net35\System.Threading.dll</HintPath>
5959
</Reference>
60-
<Reference Include="System.Web">
61-
<Aliases>web</Aliases>
62-
</Reference>
6360
<Reference Include="WindowsBase" />
6461
</ItemGroup>
6562
<ItemGroup>

src/corelib/corelib.v4.0.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@
5353
<Reference Include="System.Core" />
5454
<Reference Include="System.Runtime.Serialization" />
5555
<Reference Include="System.ServiceModel" />
56-
<Reference Include="System.Web">
57-
<Aliases>web</Aliases>
58-
</Reference>
5956
<Reference Include="WindowsBase" />
6057
</ItemGroup>
6158
<ItemGroup>

0 commit comments

Comments
 (0)