summaryrefslogtreecommitdiffstats
path: root/samples/OAuthClient
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-12-29 09:42:17 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2012-12-29 09:42:17 -0800
commit357785cae9e7f315dfb944a1a3eb9f98d7dd8f90 (patch)
tree95e15ea0f98d4759f0f2ef610140569930148821 /samples/OAuthClient
parent0f17e9f146fc326e7326babbf1f509c97853bcf1 (diff)
downloadDotNetOpenAuth-357785cae9e7f315dfb944a1a3eb9f98d7dd8f90.zip
DotNetOpenAuth-357785cae9e7f315dfb944a1a3eb9f98d7dd8f90.tar.gz
DotNetOpenAuth-357785cae9e7f315dfb944a1a3eb9f98d7dd8f90.tar.bz2
Fixes up some missing references.
Upgrades MVC dependency from 1.0 to 3.0, via NuGet.
Diffstat (limited to 'samples/OAuthClient')
-rw-r--r--samples/OAuthClient/OAuthClient.csproj5
-rw-r--r--samples/OAuthClient/packages.config4
2 files changed, 8 insertions, 1 deletions
diff --git a/samples/OAuthClient/OAuthClient.csproj b/samples/OAuthClient/OAuthClient.csproj
index e7f33fc..8a5cc88 100644
--- a/samples/OAuthClient/OAuthClient.csproj
+++ b/samples/OAuthClient/OAuthClient.csproj
@@ -10,6 +10,7 @@
<IISExpressAnonymousAuthentication />
<IISExpressWindowsAuthentication />
<IISExpressUseClassicPipelineMode />
+ <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\src\</SolutionDir>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -49,7 +50,7 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="log4net">
- <HintPath>..\..\lib\log4net.dll</HintPath>
+ <HintPath>..\..\src\packages\log4net.2.0.0\lib\net40-full\log4net.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
@@ -83,6 +84,7 @@
<Content Include="Scripts\jquery-1.6.1.min.js" />
<Content Include="WindowsLive.aspx" />
<Content Include="Yammer.aspx" />
+ <Content Include="packages.config" />
<None Include="Service References\SampleResourceServer\DataApi.disco" />
<None Include="Service References\SampleResourceServer\configuration91.svcinfo" />
<None Include="Service References\SampleResourceServer\configuration.svcinfo" />
@@ -254,4 +256,5 @@
</VisualStudio>
</ProjectExtensions>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), EnlistmentInfo.targets))\EnlistmentInfo.targets" Condition=" '$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), EnlistmentInfo.targets))' != '' " />
+ <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
</Project> \ No newline at end of file
diff --git a/samples/OAuthClient/packages.config b/samples/OAuthClient/packages.config
new file mode 100644
index 0000000..6562527
--- /dev/null
+++ b/samples/OAuthClient/packages.config
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<packages>
+ <package id="log4net" version="2.0.0" targetFramework="net45" />
+</packages> \ No newline at end of file