Skip to content

Commit

Permalink
Updating project to use local copy of ADAL v4
Browse files Browse the repository at this point in the history
ADAL v4 isn't on nuget yet, have to build my own copy for now.
  • Loading branch information
jasonjoh committed Jul 27, 2015
1 parent 63f6f57 commit 4be0bea
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,6 @@ Temporary Items
/*/bin
/*/obj
/packages
readme.html
readme.html
*.zip
adalv4
2 changes: 2 additions & 0 deletions dotnet-tutorial/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
<add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
<add key="ida:ClientId" value="aa29ce79-0680-4d37-b169-c75521a0818f" />
<add key="ida:ClientSecret" value="64k6beB5nrXPyDFRsO1gKJA" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.5" />
Expand Down
7 changes: 4 additions & 3 deletions dotnet-tutorial/dotnet-tutorial.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,11 @@
<Reference Include="Microsoft.CSharp" />
<Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\azure-activedirectory-library-for-dotnet\src\ADAL.PCL.CoreCLR\bin\Debug\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath>
<HintPath>..\adalv4\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath>
</Reference>
<Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.Platform">
<HintPath>..\..\..\azure-activedirectory-library-for-dotnet\src\ADAL.PCL.CoreCLR\bin\Debug\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath>
<Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory.Platform, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\adalv4\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath>
</Reference>
<Reference Include="Microsoft.OData.Client, Version=6.13.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.OData.Client.6.13.0\lib\net40\Microsoft.OData.Client.dll</HintPath>
Expand Down

0 comments on commit 4be0bea

Please sign in to comment.