Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 3df1073

Browse files
committed
Fix up Common links in System.Net.Http src and tests
An include for a Common file was using ..\..\Common instead of $(CommonPath). Another had a link but not under Common. And in the test project, all of the production code files were also being flattened into a single ProductionCode folder.
1 parent 264d920 commit 3df1073

File tree

2 files changed

+82
-82
lines changed

2 files changed

+82
-82
lines changed

src/System.Net.Http/src/System.Net.Http.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
<ItemGroup Condition=" '$(TargetsUnix)' == 'true' ">
131131
<Compile Include="System\Net\Http\HttpClientHandler.Unix.cs" />
132132
<Compile Include="$(CommonPath)\System\NotImplemented.cs">
133-
<Link>NotImplemented.cs</Link>
133+
<Link>Common\System\NotImplemented.cs</Link>
134134
</Compile>
135135
</ItemGroup>
136136

src/System.Net.Http/tests/System.Net.Http.Tests.csproj

Lines changed: 81 additions & 81 deletions
Original file line numberDiff line numberDiff line change
@@ -22,245 +22,245 @@
2222
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Windows_Release|AnyCPU' " />
2323

2424
<ItemGroup>
25-
<Compile Include="..\..\Common\src\System\NotImplemented.cs">
26-
<Link>ProductionCode\NotImplemented.cs</Link>
25+
<Compile Include="$(CommonPath)\System\NotImplemented.cs">
26+
<Link>ProductionCode\Common\System\NotImplemented.cs</Link>
2727
</Compile>
2828
<Compile Include="..\src\Internal\HttpKnownHeaderNames.cs">
29-
<Link>ProductionCode\HttpKnownHeaderNames.cs</Link>
29+
<Link>ProductionCode\Internal\HttpKnownHeaderNames.cs</Link>
3030
</Compile>
3131
<Compile Include="..\src\Internal\HttpStatusDescription.cs">
32-
<Link>ProductionCode\HttpStatusDescription.cs</Link>
32+
<Link>ProductionCode\Internal\HttpStatusDescription.cs</Link>
3333
</Compile>
3434
<Compile Include="..\src\Internal\HttpVersion.cs">
35-
<Link>ProductionCode\HttpVersion.cs</Link>
35+
<Link>ProductionCode\Internal\HttpVersion.cs</Link>
3636
</Compile>
3737
<Compile Include="..\src\Internal\ICloneable.cs">
38-
<Link>ProductionCode\ICloneable.cs</Link>
38+
<Link>ProductionCode\Internal\ICloneable.cs</Link>
3939
</Compile>
4040
<Compile Include="..\src\Internal\MailAddress.cs">
41-
<Link>ProductionCode\MailAddress.cs</Link>
41+
<Link>ProductionCode\Internal\MailAddress.cs</Link>
4242
</Compile>
4343
<Compile Include="..\src\Internal\Mail\DomainLiteralReader.cs">
44-
<Link>ProductionCode\DomainLiteralReader.cs</Link>
44+
<Link>ProductionCode\Internal\DomainLiteralReader.cs</Link>
4545
</Compile>
4646
<Compile Include="..\src\Internal\Mail\DotAtomReader.cs">
47-
<Link>ProductionCode\DotAtomReader.cs</Link>
47+
<Link>ProductionCode\Internal\DotAtomReader.cs</Link>
4848
</Compile>
4949
<Compile Include="..\src\Internal\Mail\MailAddressParser.cs">
50-
<Link>ProductionCode\MailAddressParser.cs</Link>
50+
<Link>ProductionCode\Internal\MailAddressParser.cs</Link>
5151
</Compile>
5252
<Compile Include="..\src\Internal\Mail\MailBnfHelper.cs">
53-
<Link>ProductionCode\MailBnfHelper.cs</Link>
53+
<Link>ProductionCode\Internal\MailBnfHelper.cs</Link>
5454
</Compile>
5555
<Compile Include="..\src\Internal\Mail\QuotedPairReader.cs">
56-
<Link>ProductionCode\QuotedPairReader.cs</Link>
56+
<Link>ProductionCode\Internal\QuotedPairReader.cs</Link>
5757
</Compile>
5858
<Compile Include="..\src\Internal\Mail\QuotedStringFormatReader.cs">
59-
<Link>ProductionCode\QuotedStringFormatReader.cs</Link>
59+
<Link>ProductionCode\Internal\QuotedStringFormatReader.cs</Link>
6060
</Compile>
6161
<Compile Include="..\src\Internal\Mail\WhitespaceReader.cs">
62-
<Link>ProductionCode\WhitespaceReader.cs</Link>
62+
<Link>ProductionCode\Internal\WhitespaceReader.cs</Link>
6363
</Compile>
6464
<Compile Include="..\src\Internal\Logging.cs">
65-
<Link>ProductionCode\Logging.cs</Link>
65+
<Link>ProductionCode\Internal\Logging.cs</Link>
6666
</Compile>
6767
<Compile Include="..\src\Internal\UriHelper.cs">
68-
<Link>ProductionCode\UriHelper.cs</Link>
68+
<Link>ProductionCode\Internal\UriHelper.cs</Link>
6969
</Compile>
7070
<Compile Include="..\src\Shims\Uri.cs">
71-
<Link>ProductionCode\Uri.cs</Link>
71+
<Link>ProductionCode\Shims\Uri.cs</Link>
7272
</Compile>
7373
<Compile Include="..\src\System\Net\Http\ByteArrayContent.cs">
74-
<Link>ProductionCode\ByteArrayContent.cs</Link>
74+
<Link>ProductionCode\System\Net\Http\ByteArrayContent.cs</Link>
7575
</Compile>
7676
<Compile Include="..\src\System\Net\Http\ClientCertificateOption.cs">
77-
<Link>ProductionCode\ClientCertificateOption.cs</Link>
77+
<Link>ProductionCode\System\Net\Http\ClientCertificateOption.cs</Link>
7878
</Compile>
7979
<Compile Include="..\src\System\Net\Http\DelegatingHandler.cs">
80-
<Link>ProductionCode\DelegatingHandler.cs</Link>
80+
<Link>ProductionCode\System\Net\Http\DelegatingHandler.cs</Link>
8181
</Compile>
8282
<Compile Include="..\src\System\Net\Http\DelegatingStream.cs">
83-
<Link>ProductionCode\DelegatingStream.cs</Link>
83+
<Link>ProductionCode\System\Net\Http\DelegatingStream.cs</Link>
8484
</Compile>
8585
<Compile Include="..\src\System\Net\Http\FormUrlEncodedContent.cs">
86-
<Link>ProductionCode\FormUrlEncodedContent.cs</Link>
86+
<Link>ProductionCode\System\Net\Http\FormUrlEncodedContent.cs</Link>
8787
</Compile>
8888
<Compile Include="..\src\System\Net\Http\Headers\AuthenticationHeaderValue.cs">
89-
<Link>ProductionCode\AuthenticationHeaderValue.cs</Link>
89+
<Link>ProductionCode\System\Net\Http\Headers\AuthenticationHeaderValue.cs</Link>
9090
</Compile>
9191
<Compile Include="..\src\System\Net\Http\Headers\BaseHeaderParser.cs">
92-
<Link>ProductionCode\BaseHeaderParser.cs</Link>
92+
<Link>ProductionCode\System\Net\Http\Headers\BaseHeaderParser.cs</Link>
9393
</Compile>
9494
<Compile Include="..\src\System\Net\Http\Headers\ByteArrayHeaderParser.cs">
95-
<Link>ProductionCode\ByteArrayHeaderParser.cs</Link>
95+
<Link>ProductionCode\System\Net\Http\Headers\ByteArrayHeaderParser.cs</Link>
9696
</Compile>
9797
<Compile Include="..\src\System\Net\Http\Headers\CacheControlHeaderParser.cs">
98-
<Link>ProductionCode\CacheControlHeaderParser.cs</Link>
98+
<Link>ProductionCode\System\Net\Http\Headers\CacheControlHeaderParser.cs</Link>
9999
</Compile>
100100
<Compile Include="..\src\System\Net\Http\Headers\CacheControlHeaderValue.cs">
101-
<Link>ProductionCode\CacheControlHeaderValue.cs</Link>
101+
<Link>ProductionCode\System\Net\Http\Headers\CacheControlHeaderValue.cs</Link>
102102
</Compile>
103103
<Compile Include="..\src\System\Net\Http\Headers\ContentDispositionHeaderValue.cs">
104-
<Link>ProductionCode\ContentDispositionHeaderValue.cs</Link>
104+
<Link>ProductionCode\System\Net\Http\Headers\ContentDispositionHeaderValue.cs</Link>
105105
</Compile>
106106
<Compile Include="..\src\System\Net\Http\Headers\ContentRangeHeaderValue.cs">
107-
<Link>ProductionCode\ContentRangeHeaderValue.cs</Link>
107+
<Link>ProductionCode\System\Net\Http\Headers\ContentRangeHeaderValue.cs</Link>
108108
</Compile>
109109
<Compile Include="..\src\System\Net\Http\Headers\DateHeaderParser.cs">
110-
<Link>ProductionCode\DateHeaderParser.cs</Link>
110+
<Link>ProductionCode\System\Net\Http\Headers\DateHeaderParser.cs</Link>
111111
</Compile>
112112
<Compile Include="..\src\System\Net\Http\Headers\EntityTagHeaderValue.cs">
113-
<Link>ProductionCode\EntityTagHeaderValue.cs</Link>
113+
<Link>ProductionCode\System\Net\Http\Headers\EntityTagHeaderValue.cs</Link>
114114
</Compile>
115115
<Compile Include="..\src\System\Net\Http\Headers\GenericHeaderParser.cs">
116-
<Link>ProductionCode\GenericHeaderParser.cs</Link>
116+
<Link>ProductionCode\System\Net\Http\Headers\GenericHeaderParser.cs</Link>
117117
</Compile>
118118
<Compile Include="..\src\System\Net\Http\Headers\HeaderUtilities.cs">
119-
<Link>ProductionCode\HeaderUtilities.cs</Link>
119+
<Link>ProductionCode\System\Net\Http\Headers\HeaderUtilities.cs</Link>
120120
</Compile>
121121
<Compile Include="..\src\System\Net\Http\Headers\HttpContentHeaders.cs">
122-
<Link>ProductionCode\HttpContentHeaders.cs</Link>
122+
<Link>ProductionCode\System\Net\Http\Headers\HttpContentHeaders.cs</Link>
123123
</Compile>
124124
<Compile Include="..\src\System\Net\Http\Headers\HttpGeneralHeaders.cs">
125-
<Link>ProductionCode\HttpGeneralHeaders.cs</Link>
125+
<Link>ProductionCode\System\Net\Http\Headers\HttpGeneralHeaders.cs</Link>
126126
</Compile>
127127
<Compile Include="..\src\System\Net\Http\Headers\HttpHeaderParser.cs">
128-
<Link>ProductionCode\HttpHeaderParser.cs</Link>
128+
<Link>ProductionCode\System\Net\Http\Headers\HttpHeaderParser.cs</Link>
129129
</Compile>
130130
<Compile Include="..\src\System\Net\Http\Headers\HttpHeaders.cs">
131-
<Link>ProductionCode\HttpHeaders.cs</Link>
131+
<Link>ProductionCode\System\Net\Http\Headers\HttpHeaders.cs</Link>
132132
</Compile>
133133
<Compile Include="..\src\System\Net\Http\Headers\HttpHeaderValueCollection.cs">
134-
<Link>ProductionCode\HttpHeaderValueCollection.cs</Link>
134+
<Link>ProductionCode\System\Net\Http\Headers\HttpHeaderValueCollection.cs</Link>
135135
</Compile>
136136
<Compile Include="..\src\System\Net\Http\Headers\HttpRequestHeaders.cs">
137-
<Link>ProductionCode\HttpRequestHeaders.cs</Link>
137+
<Link>ProductionCode\System\Net\Http\Headers\HttpRequestHeaders.cs</Link>
138138
</Compile>
139139
<Compile Include="..\src\System\Net\Http\Headers\HttpResponseHeaders.cs">
140-
<Link>ProductionCode\HttpResponseHeaders.cs</Link>
140+
<Link>ProductionCode\System\Net\Http\Headers\HttpResponseHeaders.cs</Link>
141141
</Compile>
142142
<Compile Include="..\src\System\Net\Http\Headers\Int32NumberHeaderParser.cs">
143-
<Link>ProductionCode\Int32NumberHeaderParser.cs</Link>
143+
<Link>ProductionCode\System\Net\Http\Headers\Int32NumberHeaderParser.cs</Link>
144144
</Compile>
145145
<Compile Include="..\src\System\Net\Http\Headers\Int64NumberHeaderParser.cs">
146-
<Link>ProductionCode\Int64NumberHeaderParser.cs</Link>
146+
<Link>ProductionCode\System\Net\Http\Headers\Int64NumberHeaderParser.cs</Link>
147147
</Compile>
148148
<Compile Include="..\src\System\Net\Http\Headers\MediaTypeHeaderParser.cs">
149-
<Link>ProductionCode\MediaTypeHeaderParser.cs</Link>
149+
<Link>ProductionCode\System\Net\Http\Headers\MediaTypeHeaderParser.cs</Link>
150150
</Compile>
151151
<Compile Include="..\src\System\Net\Http\Headers\MediaTypeHeaderValue.cs">
152-
<Link>ProductionCode\MediaTypeHeaderValue.cs</Link>
152+
<Link>ProductionCode\System\Net\Http\Headers\MediaTypeHeaderValue.cs</Link>
153153
</Compile>
154154
<Compile Include="..\src\System\Net\Http\Headers\MediaTypeWithQualityHeaderValue.cs">
155-
<Link>ProductionCode\MediaTypeWithQualityHeaderValue.cs</Link>
155+
<Link>ProductionCode\System\Net\Http\Headers\MediaTypeWithQualityHeaderValue.cs</Link>
156156
</Compile>
157157
<Compile Include="..\src\System\Net\Http\Headers\NameValueHeaderValue.cs">
158-
<Link>ProductionCode\NameValueHeaderValue.cs</Link>
158+
<Link>ProductionCode\System\Net\Http\Headers\NameValueHeaderValue.cs</Link>
159159
</Compile>
160160
<Compile Include="..\src\System\Net\Http\Headers\NameValueWithParametersHeaderValue.cs">
161-
<Link>ProductionCode\NameValueWithParametersHeaderValue.cs</Link>
161+
<Link>ProductionCode\System\Net\Http\Headers\.cs</Link>
162162
</Compile>
163163
<Compile Include="..\src\System\Net\Http\Headers\ObjectCollection.cs">
164-
<Link>ProductionCode\ObjectCollection.cs</Link>
164+
<Link>ProductionCode\System\Net\Http\Headers\ObjectCollection.cs</Link>
165165
</Compile>
166166
<Compile Include="..\src\System\Net\Http\Headers\ProductHeaderValue.cs">
167-
<Link>ProductionCode\ProductHeaderValue.cs</Link>
167+
<Link>ProductionCode\System\Net\Http\Headers\ProductHeaderValue.cs</Link>
168168
</Compile>
169169
<Compile Include="..\src\System\Net\Http\Headers\ProductInfoHeaderParser.cs">
170-
<Link>ProductionCode\ProductInfoHeaderParser.cs</Link>
170+
<Link>ProductionCode\System\Net\Http\Headers\ProductInfoHeaderParser.cs</Link>
171171
</Compile>
172172
<Compile Include="..\src\System\Net\Http\Headers\ProductInfoHeaderValue.cs">
173-
<Link>ProductionCode\ProductInfoHeaderValue.cs</Link>
173+
<Link>ProductionCode\System\Net\Http\Headers\ProductInfoHeaderValue.cs</Link>
174174
</Compile>
175175
<Compile Include="..\src\System\Net\Http\Headers\RangeConditionHeaderValue.cs">
176-
<Link>ProductionCode\RangeConditionHeaderValue.cs</Link>
176+
<Link>ProductionCode\System\Net\Http\Headers\RangeConditionHeaderValue.cs</Link>
177177
</Compile>
178178
<Compile Include="..\src\System\Net\Http\Headers\RangeHeaderValue.cs">
179-
<Link>ProductionCode\RangeHeaderValue.cs</Link>
179+
<Link>ProductionCode\System\Net\Http\Headers\RangeHeaderValue.cs</Link>
180180
</Compile>
181181
<Compile Include="..\src\System\Net\Http\Headers\RangeItemHeaderValue.cs">
182-
<Link>ProductionCode\RangeItemHeaderValue.cs</Link>
182+
<Link>ProductionCode\System\Net\Http\Headers\RangeItemHeaderValue.cs</Link>
183183
</Compile>
184184
<Compile Include="..\src\System\Net\Http\Headers\RetryConditionHeaderValue.cs">
185-
<Link>ProductionCode\RetryConditionHeaderValue.cs</Link>
185+
<Link>ProductionCode\System\Net\Http\Headers\RetryConditionHeaderValue.cs</Link>
186186
</Compile>
187187
<Compile Include="..\src\System\Net\Http\Headers\StringWithQualityHeaderValue.cs">
188-
<Link>ProductionCode\StringWithQualityHeaderValue.cs</Link>
188+
<Link>ProductionCode\System\Net\Http\Headers\StringWithQualityHeaderValue.cs</Link>
189189
</Compile>
190190
<Compile Include="..\src\System\Net\Http\Headers\TimeSpanHeaderParser.cs">
191-
<Link>ProductionCode\TimeSpanHeaderParser.cs</Link>
191+
<Link>ProductionCode\System\Net\Http\Headers\TimeSpanHeaderParser.cs</Link>
192192
</Compile>
193193
<Compile Include="..\src\System\Net\Http\Headers\TransferCodingHeaderParser.cs">
194-
<Link>ProductionCode\TransferCodingHeaderParser.cs</Link>
194+
<Link>ProductionCode\System\Net\Http\Headers\TransferCodingHeaderParser.cs</Link>
195195
</Compile>
196196
<Compile Include="..\src\System\Net\Http\Headers\TransferCodingHeaderValue.cs">
197-
<Link>ProductionCode\TransferCodingHeaderValue.cs</Link>
197+
<Link>ProductionCode\System\Net\Http\Headers\TransferCodingHeaderValue.cs</Link>
198198
</Compile>
199199
<Compile Include="..\src\System\Net\Http\Headers\TransferCodingWithQualityHeaderValue.cs">
200-
<Link>ProductionCode\TransferCodingWithQualityHeaderValue.cs</Link>
200+
<Link>ProductionCode\System\Net\Http\Headers\TransferCodingWithQualityHeaderValue.cs</Link>
201201
</Compile>
202202
<Compile Include="..\src\System\Net\Http\Headers\UriHeaderParser.cs">
203-
<Link>ProductionCode\UriHeaderParser.cs</Link>
203+
<Link>ProductionCode\System\Net\Http\Headers\UriHeaderParser.cs</Link>
204204
</Compile>
205205
<Compile Include="..\src\System\Net\Http\Headers\ViaHeaderValue.cs">
206-
<Link>ProductionCode\ViaHeaderValue.cs</Link>
206+
<Link>ProductionCode\System\Net\Http\Headers\ViaHeaderValue.cs</Link>
207207
</Compile>
208208
<Compile Include="..\src\System\Net\Http\Headers\WarningHeaderValue.cs">
209-
<Link>ProductionCode\WarningHeaderValue.cs</Link>
209+
<Link>ProductionCode\System\Net\Http\Headers\WarningHeaderValue.cs</Link>
210210
</Compile>
211211
<Compile Include="..\src\System\Net\Http\HttpClient.cs">
212-
<Link>ProductionCode\HttpClient.cs</Link>
212+
<Link>ProductionCode\System\Net\Http\HttpClient.cs</Link>
213213
</Compile>
214214
<Compile Include="..\src\System\Net\Http\HttpCompletionOption.cs">
215-
<Link>ProductionCode\HttpCompletionOption.cs</Link>
215+
<Link>ProductionCode\System\Net\Http\HttpCompletionOption.cs</Link>
216216
</Compile>
217217
<Compile Include="..\src\System\Net\Http\HttpContent.cs">
218-
<Link>ProductionCode\HttpContent.cs</Link>
218+
<Link>ProductionCode\System\Net\Http\HttpContent.cs</Link>
219219
</Compile>
220220
<Compile Include="..\src\System\Net\Http\HttpMessageHandler.cs">
221-
<Link>ProductionCode\HttpMessageHandler.cs</Link>
221+
<Link>ProductionCode\System\Net\Http\HttpMessageHandler.cs</Link>
222222
</Compile>
223223
<Compile Include="..\src\System\Net\Http\HttpMessageInvoker.cs">
224-
<Link>ProductionCode\HttpMessageInvoker.cs</Link>
224+
<Link>ProductionCode\System\Net\Http\HttpMessageInvoker.cs</Link>
225225
</Compile>
226226
<Compile Include="..\src\System\Net\Http\HttpMethod.cs">
227-
<Link>ProductionCode\HttpMethod.cs</Link>
227+
<Link>ProductionCode\System\Net\Http\HttpMethod.cs</Link>
228228
</Compile>
229229
<Compile Include="..\src\System\Net\Http\HttpParseResult.cs">
230-
<Link>ProductionCode\HttpParseResult.cs</Link>
230+
<Link>ProductionCode\System\Net\Http\HttpParseResult.cs</Link>
231231
</Compile>
232232
<Compile Include="..\src\System\Net\Http\HttpRequestException.cs">
233-
<Link>ProductionCode\HttpRequestException.cs</Link>
233+
<Link>ProductionCode\System\Net\Http\HttpRequestException.cs</Link>
234234
</Compile>
235235
<Compile Include="..\src\System\Net\Http\HttpRequestMessage.cs">
236-
<Link>ProductionCode\HttpRequestMessage.cs</Link>
236+
<Link>ProductionCode\System\Net\Http\HttpRequestMessage.cs</Link>
237237
</Compile>
238238
<Compile Include="..\src\System\Net\Http\HttpResponseMessage.cs">
239-
<Link>ProductionCode\HttpResponseMessage.cs</Link>
239+
<Link>ProductionCode\System\Net\Http\HttpResponseMessage.cs</Link>
240240
</Compile>
241241
<Compile Include="..\src\System\Net\Http\HttpRuleParser.cs">
242-
<Link>ProductionCode\HttpRuleParser.cs</Link>
242+
<Link>ProductionCode\System\Net\Http\HttpRuleParser.cs</Link>
243243
</Compile>
244244
<Compile Include="..\src\System\Net\Http\HttpUtilities.cs">
245-
<Link>ProductionCode\HttpUtilities.cs</Link>
245+
<Link>ProductionCode\System\Net\Http\HttpUtilities.cs</Link>
246246
</Compile>
247247
<Compile Include="..\src\System\Net\Http\MessageProcessingHandler.cs">
248-
<Link>ProductionCode\MessageProcessingHandler.cs</Link>
248+
<Link>ProductionCode\System\Net\Http\MessageProcessingHandler.cs</Link>
249249
</Compile>
250250
<Compile Include="..\src\System\Net\Http\MultipartContent.cs">
251-
<Link>ProductionCode\MultipartContent.cs</Link>
251+
<Link>ProductionCode\System\Net\Http\MultipartContent.cs</Link>
252252
</Compile>
253253
<Compile Include="..\src\System\Net\Http\MultipartFormDataContent.cs">
254-
<Link>ProductionCode\MultipartFormDataContent.cs</Link>
254+
<Link>ProductionCode\System\Net\Http\MultipartFormDataContent.cs</Link>
255255
</Compile>
256256
<Compile Include="..\src\System\Net\Http\StreamContent.cs">
257-
<Link>ProductionCode\StreamContent.cs</Link>
257+
<Link>ProductionCode\System\Net\Http\StreamContent.cs</Link>
258258
</Compile>
259259
<Compile Include="..\src\System\Net\Http\StreamToStreamCopy.cs">
260-
<Link>ProductionCode\StreamToStreamCopy.cs</Link>
260+
<Link>ProductionCode\System\Net\Http\StreamToStreamCopy.cs</Link>
261261
</Compile>
262262
<Compile Include="..\src\System\Net\Http\StringContent.cs">
263-
<Link>ProductionCode\StringContent.cs</Link>
263+
<Link>ProductionCode\System\Net\Http\StringContent.cs</Link>
264264
</Compile>
265265
<Compile Include="Fakes\HttpClientHandler.cs" />
266266
<Compile Include="Headers\AuthenticationHeaderValueTest.cs" />

0 commit comments

Comments
 (0)