Skip to content

Commit

Permalink
updated nuget packages, removed superfluous ones.
Browse files Browse the repository at this point in the history
  • Loading branch information
pburrows committed Apr 3, 2016
1 parent 7fbdb44 commit 013dcf1
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@
<Private>True</Private>
</Reference>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.8.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
Expand All @@ -102,9 +106,6 @@
<Private>True</Private>
<HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System.Net.Http">
</Reference>
<Reference Include="System.Net.Http.Formatting, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,17 @@
using System.Net.Http;
using System.Threading.Tasks;
using System.Web.Http;
using BTC.SiteGenerator.Website.Models;

namespace BTC.SiteGenerator.Website.Controllers
{
[RoutePrefix("api/publications")]
public class PublicationsController : ApiController
{
[HttpGet]
public async Task<IEnumerable<PublicationsListViewModel>> GetPublications()
public Task<IEnumerable<PublicationsListViewModel>> GetPublications()
{

return null;
}
}
}
2 changes: 1 addition & 1 deletion src/BTC.SiteGenerator.Website/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
Expand Down
7 changes: 1 addition & 6 deletions src/BTC.SiteGenerator.Website/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
<packages>
<package id="Antlr" version="3.4.1.9004" targetFramework="net452" />
<package id="AutoMapper" version="4.2.1" targetFramework="net452" />
<package id="bootstrap" version="3.0.0" targetFramework="net452" />
<package id="EntityFramework" version="6.1.3" targetFramework="net452" />
<package id="jQuery" version="1.10.2" targetFramework="net452" />
<package id="jQuery.Validation" version="1.11.1" targetFramework="net452" />
<package id="Microsoft.ApplicationInsights" version="1.2.3" targetFramework="net452" />
<package id="Microsoft.ApplicationInsights.Agent.Intercept" version="1.2.0" targetFramework="net452" />
<package id="Microsoft.ApplicationInsights.DependencyCollector" version="1.2.3" targetFramework="net452" />
Expand Down Expand Up @@ -40,9 +37,7 @@
<package id="Microsoft.Owin.Security.OAuth" version="3.0.1" targetFramework="net452" />
<package id="Microsoft.Owin.Security.Twitter" version="3.0.1" targetFramework="net452" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net452" />
<package id="Modernizr" version="2.6.2" targetFramework="net452" />
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net452" />
<package id="Newtonsoft.Json" version="8.0.3" targetFramework="net452" />
<package id="Owin" version="1.0" targetFramework="net452" />
<package id="Respond" version="1.2.0" targetFramework="net452" />
<package id="WebGrease" version="1.5.2" targetFramework="net452" />
</packages>
8 changes: 6 additions & 2 deletions src/BTC.SiteGenerator.Website/scripts/app/app.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/BTC.SiteGenerator.Website/scripts/app/app.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 013dcf1

Please sign in to comment.