Skip to content

Commit

Permalink
[#5] - Added support for .NET 4.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
eoin55 committed Dec 4, 2016
1 parent c788aed commit 3dda1b7
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
11 changes: 8 additions & 3 deletions Src/HoneyBear.HalClient/HoneyBear.HalClient.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>HoneyBear.HalClient</RootNamespace>
<AssemblyName>HoneyBear.HalClient</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand All @@ -21,6 +22,7 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Debug\HoneyBear.HalClient.xml</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
Expand All @@ -30,6 +32,7 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Release\HoneyBear.HalClient.xml</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
Expand All @@ -44,7 +47,7 @@
<Private>True</Private>
</Reference>
<Reference Include="Tavis.UriTemplates, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Tavis.UriTemplates.0.6.4\lib\Net45\Tavis.UriTemplates.dll</HintPath>
<HintPath>..\packages\Tavis.UriTemplates.1.1.0\lib\Net45\Tavis.UriTemplates.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
Expand All @@ -69,7 +72,9 @@
<Compile Include="Serialization\HalResourceJsonReader.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
<None Include="packages.config">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
10 changes: 5 additions & 5 deletions Src/HoneyBear.HalClient/HoneyBear.HalClient.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@
<title>HoneyBear.HalClient</title>
<authors>Eoin O'Connor</authors>
<owners>Eoin O'Connor</owners>
<licenseUrl>https://github.com/eoin55/HoneyBear.HalClient/LICENSE</licenseUrl>
<licenseUrl>https://github.com/eoin55/HoneyBear.HalClient/LICENSE</licenseUrl>
<projectUrl>https://github.com/eoin55/HoneyBear.HalClient</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A lightweight fluent .NET client for navigating and consuming HAL APIs.</description>
<copyright>Copyright © Eoin O'Connor 2016</copyright>
<tags>HAL JSON Hypermedia HATEOAS REST</tags>
<tags>HAL JSON Hypermedia HATEOAS REST</tags>
<dependencies>
<dependency id="Microsoft.AspNet.WebApi.Client" version="5.2.3" />
<dependency id="Tavis.UriTemplates" version="0.6.4" />
<dependency id="Tavis.UriTemplates" version="1.1.0" />
</dependencies>
</metadata>
<files>
<file src="bin\Release\HoneyBear.HalClient.dll" target="lib\net452\HoneyBear.HalClient.dll" />
<file src="bin\Release\HoneyBear.HalClient.xml" target="lib\net452\HoneyBear.HalClient.xml" />
<file src="bin\Release\HoneyBear.HalClient.dll" target="lib\net45\HoneyBear.HalClient.dll" />
<file src="bin\Release\HoneyBear.HalClient.xml" target="lib\net45\HoneyBear.HalClient.xml" />
</files>
</package>
6 changes: 3 additions & 3 deletions Src/HoneyBear.HalClient/packages.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.AspNet.WebApi.Client" version="5.2.3" targetFramework="net452" />
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net452" />
<package id="Tavis.UriTemplates" version="0.6.4" targetFramework="net452" />
<package id="Microsoft.AspNet.WebApi.Client" version="5.2.3" targetFramework="net45" />
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" />
<package id="Tavis.UriTemplates" version="1.1.0" targetFramework="net45" />
</packages>

0 comments on commit 3dda1b7

Please sign in to comment.