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 >
64
23
</Project >
0 commit comments