Skip to content

Commit d9e1a2d

Browse files
committed
Merge pull request #67 from alanquillin/FixNuGetDependencyIssue
Fixed issue with the NuGet package dependency issue
2 parents 9f59214 + e8d12bc commit d9e1a2d

13 files changed

Lines changed: 38 additions & 14 deletions

File tree

docs/html/Documentation.chm

1.54 MB
Binary file not shown.

src/console/console.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,9 @@
3838
<Reference Include="Newtonsoft.Json">
3939
<HintPath>..\packages\Newtonsoft.Json.4.5.11\lib\net40\Newtonsoft.Json.dll</HintPath>
4040
</Reference>
41-
<Reference Include="SimpleRESTServices">
42-
<HintPath>..\packages\SimpleRESTServices.1.0.6.1\lib\net40\SimpleRESTServices.dll</HintPath>
41+
<Reference Include="SimpleRESTServices, Version=1.0.6.2, Culture=neutral, processorArchitecture=MSIL">
42+
<SpecificVersion>False</SpecificVersion>
43+
<HintPath>..\packages\SimpleRESTServices.1.0.6.2\lib\net40\SimpleRESTServices.dll</HintPath>
4344
</Reference>
4445
<Reference Include="System" />
4546
<Reference Include="System.Core" />

src/console/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="Newtonsoft.Json" version="4.5.11" targetFramework="net40" />
4-
<package id="SimpleRESTServices" version="1.0.6.1" targetFramework="net40" />
4+
<package id="SimpleRESTServices" version="1.0.6.2" targetFramework="net40" />
55
</packages>

src/corelib/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.3.0")]
36-
[assembly: AssemblyFileVersion("1.0.3.0")]
35+
[assembly: AssemblyVersion("1.1.0.1")]
36+
[assembly: AssemblyFileVersion("1.1.0.1")]
3737

3838
[assembly: InternalsVisibleTo("OpenStackNet.Testing.Integration")]
3939
[assembly: InternalsVisibleTo("OpenStackNet.Testing.Unit")]

src/corelib/corelib.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,9 @@
3535
<Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
3636
<HintPath>..\packages\Newtonsoft.Json.4.5.11\lib\net40\Newtonsoft.Json.dll</HintPath>
3737
</Reference>
38-
<Reference Include="SimpleRESTServices">
39-
<HintPath>..\packages\SimpleRESTServices.1.0.6.1\lib\net40\SimpleRESTServices.dll</HintPath>
38+
<Reference Include="SimpleRESTServices, Version=1.0.6.2, Culture=neutral, processorArchitecture=MSIL">
39+
<SpecificVersion>False</SpecificVersion>
40+
<HintPath>..\packages\SimpleRESTServices.1.0.6.2\lib\net40\SimpleRESTServices.dll</HintPath>
4041
</Reference>
4142
<Reference Include="System" />
4243
<Reference Include="System.Core" />

src/corelib/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="Newtonsoft.Json" version="4.5.11" targetFramework="net40" />
4-
<package id="SimpleRESTServices" version="1.0.6.1" targetFramework="net40" />
4+
<package id="SimpleRESTServices" version="1.0.6.2" targetFramework="net40" />
55
</packages>
Binary file not shown.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
3+
<metadata>
4+
<id>SimpleRESTServices</id>
5+
<version>1.0.6.2</version>
6+
<title>SimpleRESTServices</title>
7+
<authors>alanquillin</authors>
8+
<owners>alanquillin</owners>
9+
<licenseUrl>https://github.com/JSIStudios/SimpleRestServices/wiki/License</licenseUrl>
10+
<projectUrl>https://github.com/JSIStudios/SimpleRestServices</projectUrl>
11+
<requireLicenseAcceptance>true</requireLicenseAcceptance>
12+
<description>A simple set of client side and server side REST helpers</description>
13+
<releaseNotes>https://github.com/JSIStudios/SimpleRestServices/wiki/v1.0.6.2</releaseNotes>
14+
<copyright>Copyright 2013</copyright>
15+
<tags>REST REST_client</tags>
16+
<references>
17+
<reference file="SimpleRESTServices.dll" />
18+
</references>
19+
</metadata>
20+
</package>
Binary file not shown.

src/testing/integration/integration.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,9 @@
4444
<SpecificVersion>False</SpecificVersion>
4545
<HintPath>..\..\packages\SSH.NET.2013.4.7\lib\net40\Renci.SshNet.dll</HintPath>
4646
</Reference>
47-
<Reference Include="SimpleRESTServices">
48-
<HintPath>..\..\packages\SimpleRESTServices.1.0.6.1\lib\net40\SimpleRESTServices.dll</HintPath>
47+
<Reference Include="SimpleRESTServices, Version=1.0.6.2, Culture=neutral, processorArchitecture=MSIL">
48+
<SpecificVersion>False</SpecificVersion>
49+
<HintPath>..\..\packages\SimpleRESTServices.1.0.6.2\lib\net40\SimpleRESTServices.dll</HintPath>
4950
</Reference>
5051
<Reference Include="System" />
5152
<Reference Include="System.Configuration" />

0 commit comments

Comments
 (0)