Skip to content

Commit 7229095

Browse files
committed
Merge branch 'master' of github.com:restsharp/RestSharp
2 parents a9d7c46 + b874d59 commit 7229095

18 files changed

+182
-103
lines changed

README.markdown

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66

77
### Features
88

9-
* Supports .NET 3.5+, Silverlight 4, Windows Phone 7, Mono, MonoTouch
9+
* Supports .NET 3.5+, Silverlight 4, Windows Phone 7, Mono, MonoTouch, Mono for Android
10+
* Easy installation using [NuGet](http://nuget.org/packages/RestSharp) for most .NET flavors
1011
* Automatic XML and JSON deserialization
1112
* Supports custom serialization and deserialization via ISerializer and IDeserializer
1213
* Fuzzy element name matching ('product_id' in XML/JSON will match C# property named 'ProductId')
-295 KB
Binary file not shown.
-268 KB
Binary file not shown.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("RestSharp.MonoDroid")]
9+
10+
// Setting ComVisible to false makes the types in this assembly not visible
11+
// to COM components. If you need to access a type in this assembly from
12+
// COM, set the ComVisible attribute to true on that type.
13+
[assembly: ComVisible(false)]
14+
15+
// The following GUID is for the ID of the typelib if this project is exposed to COM
16+
[assembly: Guid("A7B3BEB4-1B9B-4EDF-98BC-DF9EC82390BF")]

RestSharp.MonoDroid/RestSharp.MonoDroid.csproj

Lines changed: 31 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@
88
<ProjectGuid>{1B662C38-984F-4B6A-89B5-AFF7FCBE43A2}</ProjectGuid>
99
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
1010
<OutputType>Library</OutputType>
11-
<AppDesignerFolder>Properties</AppDesignerFolder>
12-
<RootNamespace>RestSharp.Android</RootNamespace>
13-
<AssemblyName>RestSharp.Android</AssemblyName>
11+
<RootNamespace>RestSharp</RootNamespace>
12+
<AssemblyName>RestSharp.MonoDroid</AssemblyName>
1413
<FileAlignment>512</FileAlignment>
1514
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
15+
<AndroidSupportedAbis>armeabi</AndroidSupportedAbis>
16+
<AndroidStoreUncompressedFileExtensions />
17+
<MandroidI18n />
1618
</PropertyGroup>
1719
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1820
<DebugSymbols>true</DebugSymbols>
@@ -33,9 +35,6 @@
3335
</PropertyGroup>
3436
<ItemGroup>
3537
<Reference Include="mscorlib" />
36-
<Reference Include="Newtonsoft.Json.MonoDroid">
37-
<HintPath>..\References\Newtonsoft.Json.MonoDroid.dll</HintPath>
38-
</Reference>
3938
<Reference Include="System" />
4039
<Reference Include="System.Core" />
4140
<Reference Include="System.Xml.Linq" />
@@ -90,6 +89,9 @@
9089
<Compile Include="..\RestSharp\RestClient.Sync.cs">
9190
<Link>RestClient.Sync.cs</Link>
9291
</Compile>
92+
<Compile Include="..\RestSharp\RestClientExtensions.cs">
93+
<Link>RestClientExtensions.cs</Link>
94+
</Compile>
9395
<Compile Include="..\RestSharp\RestRequest.cs">
9496
<Link>RestRequest.cs</Link>
9597
</Compile>
@@ -187,68 +189,72 @@
187189
<Link>IHttpFactory.cs</Link>
188190
</Compile>
189191
<Compile Include="..\RestSharp\Authenticators\OAuth1Authenticator.cs">
190-
<Link>Authenticators\Authenticators\OAuth1Authenticator.cs</Link>
192+
<Link>Authenticators\OAuth1Authenticator.cs</Link>
191193
</Compile>
192194
<Compile Include="..\RestSharp\Authenticators\OAuth2Authenticator.cs">
193-
<Link>Authenticators\Authenticators\OAuth2Authenticator.cs</Link>
195+
<Link>Authenticators\OAuth2Authenticator.cs</Link>
194196
</Compile>
195197
<Compile Include="..\RestSharp\Authenticators\OAuth\HttpPostParameter.cs">
196-
<Link>Authenticators\Authenticators\OAuth\HttpPostParameter.cs</Link>
198+
<Link>Authenticators\OAuth\HttpPostParameter.cs</Link>
197199
</Compile>
198200
<Compile Include="..\RestSharp\Authenticators\OAuth\HttpPostParameterType.cs">
199-
<Link>Authenticators\Authenticators\OAuth\HttpPostParameterType.cs</Link>
201+
<Link>Authenticators\OAuth\HttpPostParameterType.cs</Link>
200202
</Compile>
201203
<Compile Include="..\RestSharp\Authenticators\OAuth\OAuthParameterHandling.cs">
202-
<Link>Authenticators\Authenticators\OAuth\OAuthParameterHandling.cs</Link>
204+
<Link>Authenticators\OAuth\OAuthParameterHandling.cs</Link>
203205
</Compile>
204206
<Compile Include="..\RestSharp\Authenticators\OAuth\OAuthSignatureMethod.cs">
205-
<Link>Authenticators\Authenticators\OAuth\OAuthSignatureMethod.cs</Link>
207+
<Link>Authenticators\OAuth\OAuthSignatureMethod.cs</Link>
206208
</Compile>
207209
<Compile Include="..\RestSharp\Authenticators\OAuth\OAuthSignatureTreatment.cs">
208-
<Link>Authenticators\Authenticators\OAuth\OAuthSignatureTreatment.cs</Link>
210+
<Link>Authenticators\OAuth\OAuthSignatureTreatment.cs</Link>
209211
</Compile>
210212
<Compile Include="..\RestSharp\Authenticators\OAuth\OAuthTools.cs">
211-
<Link>Authenticators\Authenticators\OAuth\OAuthTools.cs</Link>
213+
<Link>Authenticators\OAuth\OAuthTools.cs</Link>
212214
</Compile>
213215
<Compile Include="..\RestSharp\Authenticators\OAuth\OAuthType.cs">
214-
<Link>Authenticators\Authenticators\OAuth\OAuthType.cs</Link>
216+
<Link>Authenticators\OAuth\OAuthType.cs</Link>
215217
</Compile>
216218
<Compile Include="..\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs">
217-
<Link>Authenticators\Authenticators\OAuth\OAuthWebQueryInfo.cs</Link>
219+
<Link>Authenticators\OAuth\OAuthWebQueryInfo.cs</Link>
218220
</Compile>
219221
<Compile Include="..\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs">
220-
<Link>Authenticators\Authenticators\OAuth\OAuthWorkflow.cs</Link>
222+
<Link>Authenticators\OAuth\OAuthWorkflow.cs</Link>
221223
</Compile>
222224
<Compile Include="..\RestSharp\Authenticators\OAuth\WebPair.cs">
223-
<Link>Authenticators\Authenticators\OAuth\WebPair.cs</Link>
225+
<Link>Authenticators\OAuth\WebPair.cs</Link>
224226
</Compile>
225227
<Compile Include="..\RestSharp\Authenticators\OAuth\WebPairCollection.cs">
226-
<Link>Authenticators\Authenticators\OAuth\WebPairCollection.cs</Link>
228+
<Link>Authenticators\OAuth\WebPairCollection.cs</Link>
227229
</Compile>
228230
<Compile Include="..\RestSharp\Authenticators\OAuth\WebParameter.cs">
229-
<Link>Authenticators\Authenticators\OAuth\WebParameter.cs</Link>
231+
<Link>Authenticators\OAuth\WebParameter.cs</Link>
230232
</Compile>
231233
<Compile Include="..\RestSharp\Authenticators\OAuth\WebParameterCollection.cs">
232-
<Link>Authenticators\Authenticators\OAuth\WebParameterCollection.cs</Link>
234+
<Link>Authenticators\OAuth\WebParameterCollection.cs</Link>
233235
</Compile>
234236
<Compile Include="..\RestSharp\Authenticators\OAuth\Extensions\CollectionExtensions.cs">
235-
<Link>Authenticators\Authenticators\OAuth\Extensions\CollectionExtensions.cs</Link>
237+
<Link>Authenticators\OAuth\Extensions\CollectionExtensions.cs</Link>
236238
</Compile>
237239
<Compile Include="..\RestSharp\Authenticators\OAuth\Extensions\OAuthExtensions.cs">
238-
<Link>Authenticators\Authenticators\OAuth\Extensions\OAuthExtensions.cs</Link>
240+
<Link>Authenticators\OAuth\Extensions\OAuthExtensions.cs</Link>
239241
</Compile>
240242
<Compile Include="..\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs">
241-
<Link>Authenticators\Authenticators\OAuth\Extensions\StringExtensions.cs</Link>
243+
<Link>Authenticators\OAuth\Extensions\StringExtensions.cs</Link>
242244
</Compile>
243245
<Compile Include="..\RestSharp\Authenticators\OAuth\Extensions\TimeExtensions.cs">
244-
<Link>Authenticators\Authenticators\OAuth\Extensions\TimeExtensions.cs</Link>
246+
<Link>Authenticators\OAuth\Extensions\TimeExtensions.cs</Link>
245247
</Compile>
246248
<Compile Include="..\RestSharp\RestRequestAsyncHandle.cs">
247249
<Link>RestRequestAsyncHandle.cs</Link>
248250
</Compile>
249251
<Compile Include="..\RestSharp\Deserializers\DotNetXmlDeserializer.cs">
250252
<Link>Deserializers\DotNetXmlDeserializer.cs</Link>
251253
</Compile>
254+
<Compile Include="..\RestSharp\SharedAssemblyInfo.cs">
255+
<Link>SharedAssemblyInfo.cs</Link>
256+
</Compile>
257+
<Compile Include="Properties\AssemblyInfo.cs" />
252258
</ItemGroup>
253259
<Import Project="$(MSBuildExtensionsPath)\Novell\Novell.MonoDroid.CSharp.targets" />
254260
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("RestSharp.MonoTouch")]
9+
10+
// Setting ComVisible to false makes the types in this assembly not visible
11+
// to COM components. If you need to access a type in this assembly from
12+
// COM, set the ComVisible attribute to true on that type.
13+
[assembly: ComVisible(false)]
14+
15+
// The following GUID is for the ID of the typelib if this project is exposed to COM
16+
[assembly: Guid("0F11B2CA-D65D-4B63-92B2-E4C0B1AACB6E")]

RestSharp.MonoTouch/RestSharp.MonoTouch.csproj

Lines changed: 42 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project DefaultTargets="Build" ToolsVersion="3.5" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">iPhoneSimulator</Platform>
6-
<ProductVersion>9.0.21022</ProductVersion>
6+
<ProductVersion>10.0.0</ProductVersion>
77
<SchemaVersion>2.0</SchemaVersion>
88
<ProjectGuid>{E9A9D1C5-4E06-4D31-9809-A97188C70B2C}</ProjectGuid>
9-
<ProjectTypeGuids>{E613F3A2-FE9C-494F-B74E-F63BCB86FEA6};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
9+
<ProjectTypeGuids>{6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
1010
<OutputType>Library</OutputType>
11-
<RootNamespace>RestSharp.MonoTouch</RootNamespace>
11+
<RootNamespace>RestSharp</RootNamespace>
1212
<MtouchSdkVersion>3.2</MtouchSdkVersion>
1313
<MtouchMinimumOS>3.0</MtouchMinimumOS>
1414
<TargetFrameworkVersion>v1.0</TargetFrameworkVersion>
@@ -29,6 +29,7 @@
2929
<MtouchArch>ARMv6</MtouchArch>
3030
<MtouchUseThumb>false</MtouchUseThumb>
3131
<MtouchUseSGen>false</MtouchUseSGen>
32+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
3233
</PropertyGroup>
3334
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
3435
<DebugType>none</DebugType>
@@ -44,6 +45,7 @@
4445
<MtouchArch>ARMv6</MtouchArch>
4546
<MtouchUseThumb>false</MtouchUseThumb>
4647
<MtouchUseSGen>false</MtouchUseSGen>
48+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
4749
</PropertyGroup>
4850
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
4951
<DebugSymbols>true</DebugSymbols>
@@ -60,6 +62,7 @@
6062
<MtouchArch>ARMv6</MtouchArch>
6163
<MtouchUseThumb>false</MtouchUseThumb>
6264
<MtouchUseSGen>false</MtouchUseSGen>
65+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
6366
</PropertyGroup>
6467
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
6568
<DebugType>none</DebugType>
@@ -75,18 +78,16 @@
7578
<MtouchArch>ARMv6</MtouchArch>
7679
<MtouchUseThumb>false</MtouchUseThumb>
7780
<MtouchUseSGen>false</MtouchUseSGen>
81+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
7882
</PropertyGroup>
7983
<ItemGroup>
8084
<Reference Include="System" />
8185
<Reference Include="System.Xml" />
8286
<Reference Include="System.Core" />
8387
<Reference Include="monotouch" />
8488
<Reference Include="System.Xml.Linq" />
85-
<Reference Include="NewtonsoftJsonMonoTouch, Version=4.0.0.0, Culture=neutral, PublicKeyToken=null">
86-
<SpecificVersion>False</SpecificVersion>
87-
<HintPath>..\References\NewtonsoftJsonMonoTouch.dll</HintPath>
88-
</Reference>
8989
</ItemGroup>
90+
<Import Project="$(ProgramFiles)\MSBuild\MonoTouch\Novell.MonoTouch.Common.targets" Condition="'$(windir)' != '' " />
9091
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
9192
<ItemGroup>
9293
<Compile Include="..\RestSharp\Enum.cs">
@@ -137,6 +138,9 @@
137138
<Compile Include="..\RestSharp\RestClient.Sync.cs">
138139
<Link>RestClient.Sync.cs</Link>
139140
</Compile>
141+
<Compile Include="..\RestSharp\RestClientExtensions.cs">
142+
<Link>RestClientExtensions.cs</Link>
143+
</Compile>
140144
<Compile Include="..\RestSharp\RestRequest.cs">
141145
<Link>RestRequest.cs</Link>
142146
</Compile>
@@ -161,8 +165,8 @@
161165
<Compile Include="..\RestSharp\Serializers\SerializeAsAttribute.cs">
162166
<Link>Serializers\SerializeAsAttribute.cs</Link>
163167
</Compile>
164-
<Compile Include="..\RestSharp\Extensions\ResponseExtensions.cs">
165-
<Link>Extensions\ResponseExtensions.cs</Link>
168+
<Compile Include="..\RestSharp\Serializers\DotNetXmlSerializer.cs">
169+
<Link>Serializers\DotNetXmlSerializer.cs</Link>
166170
</Compile>
167171
<Compile Include="..\RestSharp\Serializers\XmlSerializer.cs">
168172
<Link>Serializers\XmlSerializer.cs</Link>
@@ -176,6 +180,9 @@
176180
<Compile Include="..\RestSharp\Extensions\XmlExtensions.cs">
177181
<Link>Extensions\XmlExtensions.cs</Link>
178182
</Compile>
183+
<Compile Include="..\RestSharp\Extensions\ResponseExtensions.cs">
184+
<Link>Extensions\ResponseExtensions.cs</Link>
185+
</Compile>
179186
<Compile Include="..\RestSharp\Deserializers\DeserializeAsAttribute.cs">
180187
<Link>Deserializers\DeserializeAsAttribute.cs</Link>
181188
</Compile>
@@ -231,77 +238,71 @@
231238
<Link>IHttpFactory.cs</Link>
232239
</Compile>
233240
<Compile Include="..\RestSharp\Authenticators\OAuth1Authenticator.cs">
234-
<Link>Authenticators\Authenticators\OAuth1Authenticator.cs</Link>
241+
<Link>Authenticators\OAuth1Authenticator.cs</Link>
235242
</Compile>
236243
<Compile Include="..\RestSharp\Authenticators\OAuth2Authenticator.cs">
237-
<Link>Authenticators\Authenticators\OAuth2Authenticator.cs</Link>
244+
<Link>Authenticators\OAuth2Authenticator.cs</Link>
238245
</Compile>
239246
<Compile Include="..\RestSharp\Authenticators\OAuth\HttpPostParameter.cs">
240-
<Link>Authenticators\Authenticators\OAuth\HttpPostParameter.cs</Link>
247+
<Link>Authenticators\OAuth\HttpPostParameter.cs</Link>
241248
</Compile>
242249
<Compile Include="..\RestSharp\Authenticators\OAuth\HttpPostParameterType.cs">
243-
<Link>Authenticators\Authenticators\OAuth\HttpPostParameterType.cs</Link>
250+
<Link>Authenticators\OAuth\HttpPostParameterType.cs</Link>
244251
</Compile>
245252
<Compile Include="..\RestSharp\Authenticators\OAuth\OAuthParameterHandling.cs">
246-
<Link>Authenticators\Authenticators\OAuth\OAuthParameterHandling.cs</Link>
253+
<Link>Authenticators\OAuth\OAuthParameterHandling.cs</Link>
247254
</Compile>
248255
<Compile Include="..\RestSharp\Authenticators\OAuth\OAuthSignatureMethod.cs">
249-
<Link>Authenticators\Authenticators\OAuth\OAuthSignatureMethod.cs</Link>
256+
<Link>Authenticators\OAuth\OAuthSignatureMethod.cs</Link>
250257
</Compile>
251258
<Compile Include="..\RestSharp\Authenticators\OAuth\OAuthSignatureTreatment.cs">
252-
<Link>Authenticators\Authenticators\OAuth\OAuthSignatureTreatment.cs</Link>
259+
<Link>Authenticators\OAuth\OAuthSignatureTreatment.cs</Link>
253260
</Compile>
254261
<Compile Include="..\RestSharp\Authenticators\OAuth\OAuthTools.cs">
255-
<Link>Authenticators\Authenticators\OAuth\OAuthTools.cs</Link>
262+
<Link>Authenticators\OAuth\OAuthTools.cs</Link>
256263
</Compile>
257264
<Compile Include="..\RestSharp\Authenticators\OAuth\OAuthType.cs">
258-
<Link>Authenticators\Authenticators\OAuth\OAuthType.cs</Link>
265+
<Link>Authenticators\OAuth\OAuthType.cs</Link>
259266
</Compile>
260267
<Compile Include="..\RestSharp\Authenticators\OAuth\OAuthWebQueryInfo.cs">
261-
<Link>Authenticators\Authenticators\OAuth\OAuthWebQueryInfo.cs</Link>
268+
<Link>Authenticators\OAuth\OAuthWebQueryInfo.cs</Link>
262269
</Compile>
263270
<Compile Include="..\RestSharp\Authenticators\OAuth\OAuthWorkflow.cs">
264-
<Link>Authenticators\Authenticators\OAuth\OAuthWorkflow.cs</Link>
271+
<Link>Authenticators\OAuth\OAuthWorkflow.cs</Link>
265272
</Compile>
266273
<Compile Include="..\RestSharp\Authenticators\OAuth\WebPair.cs">
267-
<Link>Authenticators\Authenticators\OAuth\WebPair.cs</Link>
274+
<Link>Authenticators\OAuth\WebPair.cs</Link>
268275
</Compile>
269276
<Compile Include="..\RestSharp\Authenticators\OAuth\WebPairCollection.cs">
270-
<Link>Authenticators\Authenticators\OAuth\WebPairCollection.cs</Link>
277+
<Link>Authenticators\OAuth\WebPairCollection.cs</Link>
271278
</Compile>
272279
<Compile Include="..\RestSharp\Authenticators\OAuth\WebParameter.cs">
273-
<Link>Authenticators\Authenticators\OAuth\WebParameter.cs</Link>
280+
<Link>Authenticators\OAuth\WebParameter.cs</Link>
274281
</Compile>
275282
<Compile Include="..\RestSharp\Authenticators\OAuth\WebParameterCollection.cs">
276-
<Link>Authenticators\Authenticators\OAuth\WebParameterCollection.cs</Link>
283+
<Link>Authenticators\OAuth\WebParameterCollection.cs</Link>
277284
</Compile>
278285
<Compile Include="..\RestSharp\Authenticators\OAuth\Extensions\CollectionExtensions.cs">
279-
<Link>Authenticators\Authenticators\OAuth\Extensions\CollectionExtensions.cs</Link>
286+
<Link>Authenticators\OAuth\Extensions\CollectionExtensions.cs</Link>
280287
</Compile>
281288
<Compile Include="..\RestSharp\Authenticators\OAuth\Extensions\OAuthExtensions.cs">
282-
<Link>Authenticators\Authenticators\OAuth\Extensions\OAuthExtensions.cs</Link>
289+
<Link>Authenticators\OAuth\Extensions\OAuthExtensions.cs</Link>
283290
</Compile>
284291
<Compile Include="..\RestSharp\Authenticators\OAuth\Extensions\StringExtensions.cs">
285-
<Link>Authenticators\Authenticators\OAuth\Extensions\StringExtensions.cs</Link>
292+
<Link>Authenticators\OAuth\Extensions\StringExtensions.cs</Link>
286293
</Compile>
287294
<Compile Include="..\RestSharp\Authenticators\OAuth\Extensions\TimeExtensions.cs">
288-
<Link>Authenticators\Authenticators\OAuth\Extensions\TimeExtensions.cs</Link>
295+
<Link>Authenticators\OAuth\Extensions\TimeExtensions.cs</Link>
289296
</Compile>
290297
<Compile Include="..\RestSharp\RestRequestAsyncHandle.cs">
291298
<Link>RestRequestAsyncHandle.cs</Link>
292299
</Compile>
293-
<Compile Include="..\RestSharp\Serializers\DotNetXmlSerializer.cs">
294-
<Link>Serializers\DotNetXmlSerializer.cs</Link>
295-
</Compile>
296300
<Compile Include="..\RestSharp\Deserializers\DotNetXmlDeserializer.cs">
297301
<Link>Deserializers\DotNetXmlDeserializer.cs</Link>
298302
</Compile>
299-
</ItemGroup>
300-
<ItemGroup>
301-
<Folder Include="Authenticators\" />
302-
<Folder Include="Deserializers\" />
303-
<Folder Include="Serializers\" />
304-
<Folder Include="Extensions\" />
305-
<Folder Include="Validation\" />
303+
<Compile Include="..\RestSharp\SharedAssemblyInfo.cs">
304+
<Link>SharedAssemblyInfo.cs</Link>
305+
</Compile>
306+
<Compile Include="Properties\AssemblyInfo.cs" />
306307
</ItemGroup>
307-
</Project>
308+
</Project>

0 commit comments

Comments
 (0)