Skip to content
This repository was archived by the owner on May 7, 2020. It is now read-only.

Commit a421ebf

Browse files
committed
F|ixes #2
1 parent 7203bbe commit a421ebf

File tree

9 files changed

+39
-150
lines changed

9 files changed

+39
-150
lines changed

.nuget/NuGet.Config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<activePackageSource>
44
<add key="All" value="(Aggregate source)" />
55
</activePackageSource>
6-
<packageSources>
7-
<add key="nuget.org" value="https://nuget.org/api/v2/" />
8-
</packageSources>
9-
</configuration>
6+
<packageSources>
7+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
8+
</packageSources>
9+
</configuration>

.nuget/NuGet.exe

459 KB
Binary file not shown.

.travis.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ RestSharp.Newtonsoft.Json.Extensions
55

66
## Package status
77

8-
| Latest version | [![Nuget version](http://img.shields.io/badge/nuget-v1.0.1-blue.png)](https://www.nuget.org/packages/RestSharp.Newtonsoft.Json.Extensions/) |
8+
| Latest version | [![Nuget version](http://img.shields.io/badge/nuget-v1.0.2-blue.png)](https://www.nuget.org/packages/RestSharp.Newtonsoft.Json.Extensions/) |
99
| :------ | :------: |
1010
| **Dependencies** | [![NuGet Status](http://nugetstatus.com/RestSharp.Newtonsoft.Json.Extensions.png)](http://nugetstatus.com/packages/RestSharp.Newtonsoft.Json.Extensions) |
1111

1212
## Build status
1313

14-
| Platform | Status of last build |
14+
| Branch | **.NET (4.5.2)** |
1515
| :------ | :------: |
16-
| **.NET (4.5.2)** | [![AppVeyor build status](https://ci.appveyor.com/api/projects/status/tw195dxk1m917pc3?svg=true)](https://ci.appveyor.com/project/i4004/restsharp-newtonsoft-json-extensions) |
17-
| **Mono (Latest)** | [![Travis build status](https://travis-ci.org/i4004/RestSharp.Newtonsoft.Json.Extensions.png?branch=master)](https://travis-ci.org/i4004/RestSharp.Newtonsoft.Json.Extensions) |
16+
| **master** | [![AppVeyor build status](https://ci.appveyor.com/api/projects/status/tw195dxk1m917pc3?svg=true)](https://ci.appveyor.com/project/i4004/restsharp-newtonsoft-json-extensions) |
17+
1818

1919
## Usage
2020

RestSharp.Newtonsoft.Json.Extensions/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 36 deletions
This file was deleted.
Lines changed: 22 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,23 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4-
<PropertyGroup>
5-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{60AE39A8-BA8B-4375-BB90-1DDD1AAD8739}</ProjectGuid>
8-
<OutputType>Library</OutputType>
9-
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>RestSharp.Newtonsoft.Json.Extensions</RootNamespace>
11-
<AssemblyName>RestSharp.Newtonsoft.Json.Extensions</AssemblyName>
12-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
13-
<FileAlignment>512</FileAlignment>
14-
<TargetFrameworkProfile />
15-
</PropertyGroup>
16-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17-
<DebugSymbols>true</DebugSymbols>
18-
<DebugType>full</DebugType>
19-
<Optimize>false</Optimize>
20-
<OutputPath>bin\Debug\</OutputPath>
21-
<DefineConstants>DEBUG;TRACE</DefineConstants>
22-
<ErrorReport>prompt</ErrorReport>
23-
<WarningLevel>4</WarningLevel>
24-
</PropertyGroup>
25-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26-
<DebugType>pdbonly</DebugType>
27-
<Optimize>true</Optimize>
28-
<OutputPath>bin\Release\</OutputPath>
29-
<DefineConstants>TRACE</DefineConstants>
30-
<ErrorReport>prompt</ErrorReport>
31-
<WarningLevel>4</WarningLevel>
32-
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
33-
<DocumentationFile>bin\Release\RestSharp.Newtonsoft.Json.Extensions.xml</DocumentationFile>
34-
</PropertyGroup>
35-
<ItemGroup>
36-
<Compile Include="NewtonsoftJsonSerializer.cs" />
37-
<Compile Include="Properties\AssemblyInfo.cs" />
38-
<Compile Include="RestClientExtensions.cs" />
39-
<Compile Include="RestRequestExtensions.cs" />
40-
</ItemGroup>
41-
<ItemGroup>
42-
<Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
43-
<HintPath>..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
44-
<Private>True</Private>
45-
</Reference>
46-
<Reference Include="RestSharp, Version=105.2.3.0, Culture=neutral, processorArchitecture=MSIL">
47-
<HintPath>..\packages\RestSharp.105.2.3\lib\net452\RestSharp.dll</HintPath>
48-
<Private>True</Private>
49-
</Reference>
50-
<Reference Include="System" />
51-
</ItemGroup>
52-
<ItemGroup>
53-
<None Include="packages.config" />
54-
<None Include="RestSharp.Newtonsoft.Json.Extensions.nuspec" />
55-
</ItemGroup>
56-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
57-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
58-
Other similar extension points exist, see Microsoft.Common.targets.
59-
<Target Name="BeforeBuild">
60-
</Target>
61-
<Target Name="AfterBuild">
62-
</Target>
63-
-->
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<TargetFrameworks>net452</TargetFrameworks>
4+
<Authors>Alexander Krylkov</Authors>
5+
<Product>Simplify</Product>
6+
<Description>RestSharp extensions to use Newtonsoft.Json for serialization/deserialization</Description>
7+
<Copyright>Licensed under LGPL</Copyright>
8+
<Version>1.0.2</Version>
9+
<PackageProjectUrl>https://github.com/i4004/RestSharp.Newtonsoft.Json.Extensions</PackageProjectUrl>
10+
<PackageIconUrl>https://raw.githubusercontent.com/i4004/Simplify.Web/master/Images/Icon.png</PackageIconUrl>
11+
<RepositoryUrl>https://github.com/i4004/RestSharp.Newtonsoft.Json.Extensions</RepositoryUrl>
12+
<RepositoryType>GIT</RepositoryType>
13+
<PackageTags>JSON RestSharp</PackageTags>
14+
<PackageReleaseNotes>
15+
</PackageReleaseNotes>
16+
<OutputPath>bin\Any CPU\$(Configuration)\</OutputPath>
17+
<DocumentationFile>bin\Any CPU\$(Configuration)\$(TargetFramework)\RestSharp.Newtonsoft.Json.Extensions.xml</DocumentationFile>
18+
</PropertyGroup>
19+
<ItemGroup>
20+
<PackageReference Include="RestSharp" Version="105.2.3" />
21+
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
22+
</ItemGroup>
6423
</Project>

RestSharp.Newtonsoft.Json.Extensions/RestSharp.Newtonsoft.Json.Extensions.nuspec

Lines changed: 0 additions & 21 deletions
This file was deleted.

RestSharp.Newtonsoft.Json.Extensions/packages.config

Lines changed: 0 additions & 5 deletions
This file was deleted.

appveyor.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
11
version: '{build}'
2+
3+
image: Visual Studio 2017
4+
25
branches:
36
only:
47
- master
8+
- develop
9+
510
skip_tags: true
11+
clone_depth: 1
12+
613
configuration: Release
714
platform: Any CPU
8-
image: Visual Studio 2017
9-
clone_depth: 1
15+
1016
before_build:
1117
- cmd: '".nuget/NuGet.exe" restore RestSharp.Newtonsoft.Json.Extensions.sln'
18+
1219
build:
1320
publish_nuget: true
1421
parallel: true

0 commit comments

Comments
 (0)