Skip to content

Commit 5364399

Browse files
authored
Finish what Dependabot started (#158)
- update assembly versions, hint paths, binding redirects, et cetera - add / remove some binding redirects as needed to compile or test - move rest of the Microsoft.Owin.* packages to v4.2.2 - react to small breaking changes affecting tests - nits: mostly related to cleaning up minor warnings in local builds - ignore binary log files - add a few words to the custom dictionary - suppress warnings about using old FxCop approach - add `msbuild` summary output to console - shutdown the storage emulator after every build
1 parent 24af11d commit 5364399

File tree

152 files changed

+796
-568
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+796
-568
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ _[Ss]cripts
1919
*.pubxml
2020
*.zip
2121
*launchSettings.json
22+
*.binlog

CustomDictionary.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,16 @@
88
<Word>apis</Word>
99
<Word>awaitable</Word>
1010
<Word>bitbucket</Word>
11+
<Word>callback</Word>
1112
<Word>changeset</Word>
13+
<Word>color</Word>
1214
<Word>defaultcollection</Word>
1315
<Word>deployer</Word>
1416
<Word>dequeueing</Word>
1517
<Word>dequeues</Word>
1618
<Word>dropbox</Word>
1719
<Word>fabrikam</Word>
20+
<Word>fallback</Word>
1821
<Word>fnv</Word>
1922
<Word>fwlink</Word>
2023
<Word>GBmain</Word>
@@ -25,6 +28,8 @@
2528
<Word>kudu</Word>
2629
<Word>kanban</Word>
2730
<Word>mvc</Word>
31+
<Word>nonsuccess</Word>
32+
<Word>Northward-Fiber-Git</Word>
2833
<Word>nuget</Word>
2934
<Word>paypal</Word>
3035
<Word>salesforce</Word>

Directory.Build.props

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
11
<Project>
22
<!-- Stop MsBuild searching parent directories for this file. -->
3+
4+
<PropertyGroup>
5+
<!--
6+
Suppress "MSBUILD : warning : Post-build Code Analysis (FxCopCmd.exe) has been deprecated in favor of FxCop
7+
analyzers, which run during build. Refer to https://aka.ms/fxcopanalyzers to migrate to FxCop analyzers."
8+
-->
9+
<SuppressLegacyCodeAnalysisDeprecatedWarning>true</SuppressLegacyCodeAnalysisDeprecatedWarning>
10+
</PropertyGroup>
311
</Project>

build.cmd

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,23 +50,29 @@ if not exist %StorageEmulator% (
5050

5151
if "%1" == "" goto BuildDefaults
5252

53-
%MSBuild% AspNetWebHooks.msbuild /m /nr:false /p:Platform="Any CPU" /p:Desktop=true /v:M /fl /flp:LogFile=bin\msbuild.log;Verbosity=Normal /t:%*
53+
%MSBuild% AspNetWebHooks.msbuild /m /nr:false /p:Platform="Any CPU" /p:Desktop=true /v:M /fl ^
54+
/flp:LogFile=bin\msbuild.log;Verbosity=Normal /consoleLoggerParameters:Summary /t:%*
5455
if %ERRORLEVEL% neq 0 goto BuildFail
5556
goto BuildSuccess
5657

5758
:BuildDefaults
58-
%MSBuild% AspNetWebHooks.msbuild /m /nr:false /p:Platform="Any CPU" /p:Desktop=true /v:M /fl /flp:LogFile=bin\msbuild.log;Verbosity=Normal
59+
%MSBuild% AspNetWebHooks.msbuild /m /nr:false /p:Platform="Any CPU" /p:Desktop=true /v:M /fl ^
60+
/flp:LogFile=bin\msbuild.log;Verbosity=Normal /consoleLoggerParameters:Summary
5961
if %ERRORLEVEL% neq 0 goto BuildFail
6062
goto BuildSuccess
6163

6264
:BuildFail
65+
%StorageEmulator% stop 2> NUL
66+
%StorageEmulator% clear 2> NUL
6367
echo.
6468
echo *** BUILD FAILED ***
6569
popd
6670
endlocal
6771
exit /B 999
6872

6973
:BuildSuccess
74+
%StorageEmulator% stop 2> NUL
75+
%StorageEmulator% clear 2> NUL
7076
echo.
7177
echo **** BUILD SUCCESSFUL ***
7278
popd

samples/AzureReceivers/AzureReceivers.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
</ItemGroup>
8181
<ItemGroup>
8282
<Reference Include="Newtonsoft.Json">
83-
<HintPath>..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
83+
<HintPath>..\..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
8484
</Reference>
8585
</ItemGroup>
8686
<ItemGroup>
@@ -153,11 +153,11 @@
153153
<Error Condition="!Exists('..\..\packages\Microsoft.Net.Compilers.1.0.0\build\Microsoft.Net.Compilers.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.Net.Compilers.1.0.0\build\Microsoft.Net.Compilers.props'))" />
154154
<Error Condition="!Exists('..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props'))" />
155155
</Target>
156-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
156+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
157157
Other similar extension points exist, see Microsoft.Common.targets.
158158
<Target Name="BeforeBuild">
159159
</Target>
160160
<Target Name="AfterBuild">
161161
</Target>
162162
-->
163-
</Project>
163+
</Project>

samples/AzureReceivers/Web.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
</dependentAssembly>
4545
<dependentAssembly>
4646
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral"/>
47-
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"/>
47+
<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0"/>
4848
</dependentAssembly>
4949
</assemblyBinding>
5050
</runtime>
@@ -56,4 +56,4 @@
5656
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0"/>
5757
</handlers>
5858
</system.webServer>
59-
</configuration>
59+
</configuration>

samples/BitbucketReceiver/BitbucketReceiver.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
</ItemGroup>
8181
<ItemGroup>
8282
<Reference Include="Newtonsoft.Json">
83-
<HintPath>..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
83+
<HintPath>..\..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
8484
</Reference>
8585
</ItemGroup>
8686
<ItemGroup>
@@ -152,11 +152,11 @@
152152
<Error Condition="!Exists('..\..\packages\Microsoft.Net.Compilers.1.0.0\build\Microsoft.Net.Compilers.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.Net.Compilers.1.0.0\build\Microsoft.Net.Compilers.props'))" />
153153
<Error Condition="!Exists('..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props'))" />
154154
</Target>
155-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
155+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
156156
Other similar extension points exist, see Microsoft.Common.targets.
157157
<Target Name="BeforeBuild">
158158
</Target>
159159
<Target Name="AfterBuild">
160160
</Target>
161161
-->
162-
</Project>
162+
</Project>

samples/BitbucketReceiver/Web.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
</dependentAssembly>
4444
<dependentAssembly>
4545
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral"/>
46-
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"/>
46+
<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0"/>
4747
</dependentAssembly>
4848
</assemblyBinding>
4949
</runtime>
@@ -55,4 +55,4 @@
5555
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0"/>
5656
</handlers>
5757
</system.webServer>
58-
</configuration>
58+
</configuration>

samples/CustomReceiver/CustomReceiver.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
</ItemGroup>
8181
<ItemGroup>
8282
<Reference Include="Newtonsoft.Json">
83-
<HintPath>..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
83+
<HintPath>..\..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
8484
</Reference>
8585
</ItemGroup>
8686
<ItemGroup>
@@ -154,11 +154,11 @@
154154
<Error Condition="!Exists('..\..\packages\Microsoft.Net.Compilers.1.0.0\build\Microsoft.Net.Compilers.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.Net.Compilers.1.0.0\build\Microsoft.Net.Compilers.props'))" />
155155
<Error Condition="!Exists('..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props'))" />
156156
</Target>
157-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
157+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
158158
Other similar extension points exist, see Microsoft.Common.targets.
159159
<Target Name="BeforeBuild">
160160
</Target>
161161
<Target Name="AfterBuild">
162162
</Target>
163163
-->
164-
</Project>
164+
</Project>

samples/CustomReceiver/Web.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
</dependentAssembly>
4444
<dependentAssembly>
4545
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral"/>
46-
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"/>
46+
<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0"/>
4747
</dependentAssembly>
4848
</assemblyBinding>
4949
</runtime>
@@ -55,4 +55,4 @@
5555
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0"/>
5656
</handlers>
5757
</system.webServer>
58-
</configuration>
58+
</configuration>

samples/CustomSender.QueuedSender/App.config

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,4 @@
66
<startup>
77
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
88
</startup>
9-
<runtime>
10-
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
11-
<dependentAssembly>
12-
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
13-
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
14-
</dependentAssembly>
15-
</assemblyBinding>
16-
</runtime>
17-
</configuration>
9+
</configuration>

samples/CustomSender.QueuedSender/CustomSender.QueuedSender.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<HintPath>..\..\packages\Microsoft.Data.Edm.5.8.4\lib\net40\Microsoft.Data.Edm.dll</HintPath>
3838
<Private>True</Private>
3939
</Reference>
40-
<Reference Include="Microsoft.Data.OData, Version=5.8.4.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
40+
<Reference Include="Microsoft.Data.OData, Version=5.8.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
4141
<HintPath>..\..\packages\Microsoft.Data.OData.5.8.4\lib\net40\Microsoft.Data.OData.dll</HintPath>
4242
<Private>True</Private>
4343
</Reference>
@@ -49,12 +49,12 @@
4949
<HintPath>..\..\packages\Microsoft.WindowsAzure.ConfigurationManager.1.8.0.0\lib\net35-full\Microsoft.WindowsAzure.Configuration.dll</HintPath>
5050
<Private>True</Private>
5151
</Reference>
52-
<Reference Include="Microsoft.WindowsAzure.Storage, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
53-
<HintPath>..\..\packages\WindowsAzure.Storage.4.3.0\lib\net40\Microsoft.WindowsAzure.Storage.dll</HintPath>
52+
<Reference Include="Microsoft.WindowsAzure.Storage, Version=8.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
53+
<HintPath>..\..\packages\WindowsAzure.Storage.8.2.0\lib\net45\Microsoft.WindowsAzure.Storage.dll</HintPath>
5454
<Private>True</Private>
5555
</Reference>
56-
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
57-
<HintPath>..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
56+
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
57+
<HintPath>..\..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
5858
<Private>True</Private>
5959
</Reference>
6060
<Reference Include="System" />
@@ -94,7 +94,7 @@
9494
</ProjectReference>
9595
</ItemGroup>
9696
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
97-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
97+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
9898
Other similar extension points exist, see Microsoft.Common.targets.
9999
<Target Name="BeforeBuild">
100100
</Target>

samples/CustomSender.WebJob/App.config

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,4 @@
88
<startup>
99
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
1010
</startup>
11-
<runtime>
12-
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
13-
<dependentAssembly>
14-
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
15-
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
16-
</dependentAssembly>
17-
</assemblyBinding>
18-
</runtime>
19-
</configuration>
11+
</configuration>

samples/CustomSender.WebJob/CustomSender.WebJob.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<HintPath>..\..\packages\Microsoft.Data.Edm.5.8.4\lib\net40\Microsoft.Data.Edm.dll</HintPath>
4646
<Private>True</Private>
4747
</Reference>
48-
<Reference Include="Microsoft.Data.OData, Version=5.8.4.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
48+
<Reference Include="Microsoft.Data.OData, Version=5.8.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
4949
<HintPath>..\..\packages\Microsoft.Data.OData.5.8.4\lib\net40\Microsoft.Data.OData.dll</HintPath>
5050
<Private>True</Private>
5151
</Reference>
@@ -57,12 +57,12 @@
5757
<HintPath>..\..\packages\Microsoft.WindowsAzure.ConfigurationManager.1.8.0.0\lib\net35-full\Microsoft.WindowsAzure.Configuration.dll</HintPath>
5858
<Private>True</Private>
5959
</Reference>
60-
<Reference Include="Microsoft.WindowsAzure.Storage, Version=4.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
61-
<HintPath>..\..\packages\WindowsAzure.Storage.4.3.0\lib\net40\Microsoft.WindowsAzure.Storage.dll</HintPath>
60+
<Reference Include="Microsoft.WindowsAzure.Storage, Version=8.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
61+
<HintPath>..\..\packages\WindowsAzure.Storage.8.2.0\lib\net45\Microsoft.WindowsAzure.Storage.dll</HintPath>
6262
<Private>True</Private>
6363
</Reference>
64-
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
65-
<HintPath>..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll</HintPath>
64+
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
65+
<HintPath>..\..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
6666
<Private>True</Private>
6767
</Reference>
6868
<Reference Include="System" />
@@ -103,7 +103,7 @@
103103
</ProjectReference>
104104
</ItemGroup>
105105
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
106-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
106+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
107107
Other similar extension points exist, see Microsoft.Common.targets.
108108
<Target Name="BeforeBuild">
109109
</Target>

samples/CustomSender/CustomSender.csproj

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
</ItemGroup>
134134
<ItemGroup>
135135
<Reference Include="Newtonsoft.Json">
136-
<HintPath>..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
136+
<HintPath>..\..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
137137
</Reference>
138138
<Reference Include="Microsoft.AspNet.Identity.Core">
139139
<HintPath>..\..\packages\Microsoft.AspNet.Identity.Core.2.2.1\lib\net45\Microsoft.AspNet.Identity.Core.dll</HintPath>
@@ -148,31 +148,31 @@
148148
<HintPath>..\..\packages\Owin.1.0\lib\net40\Owin.dll</HintPath>
149149
</Reference>
150150
<Reference Include="Microsoft.Owin">
151-
<HintPath>..\..\packages\Microsoft.Owin.3.0.1\lib\net45\Microsoft.Owin.dll</HintPath>
151+
<HintPath>..\..\packages\Microsoft.Owin.4.2.2\lib\net45\Microsoft.Owin.dll</HintPath>
152152
</Reference>
153153
<Reference Include="Microsoft.Owin.Host.SystemWeb">
154-
<HintPath>..\..\packages\Microsoft.Owin.Host.SystemWeb.3.0.1\lib\net45\Microsoft.Owin.Host.SystemWeb.dll</HintPath>
154+
<HintPath>..\..\packages\Microsoft.Owin.Host.SystemWeb.4.2.2\lib\net45\Microsoft.Owin.Host.SystemWeb.dll</HintPath>
155155
</Reference>
156156
<Reference Include="Microsoft.Owin.Security">
157-
<HintPath>..\..\packages\Microsoft.Owin.Security.3.0.1\lib\net45\Microsoft.Owin.Security.dll</HintPath>
157+
<HintPath>..\..\packages\Microsoft.Owin.Security.4.2.2\lib\net45\Microsoft.Owin.Security.dll</HintPath>
158158
</Reference>
159159
<Reference Include="Microsoft.Owin.Security.Facebook">
160-
<HintPath>..\..\packages\Microsoft.Owin.Security.Facebook.3.0.1\lib\net45\Microsoft.Owin.Security.Facebook.dll</HintPath>
160+
<HintPath>..\..\packages\Microsoft.Owin.Security.Facebook.4.2.2\lib\net45\Microsoft.Owin.Security.Facebook.dll</HintPath>
161161
</Reference>
162162
<Reference Include="Microsoft.Owin.Security.Cookies">
163-
<HintPath>..\..\packages\Microsoft.Owin.Security.Cookies.3.0.1\lib\net45\Microsoft.Owin.Security.Cookies.dll</HintPath>
163+
<HintPath>..\..\packages\Microsoft.Owin.Security.Cookies.4.2.2\lib\net45\Microsoft.Owin.Security.Cookies.dll</HintPath>
164164
</Reference>
165165
<Reference Include="Microsoft.Owin.Security.OAuth">
166-
<HintPath>..\..\packages\Microsoft.Owin.Security.OAuth.3.0.1\lib\net45\Microsoft.Owin.Security.OAuth.dll</HintPath>
166+
<HintPath>..\..\packages\Microsoft.Owin.Security.OAuth.4.2.2\lib\net45\Microsoft.Owin.Security.OAuth.dll</HintPath>
167167
</Reference>
168168
<Reference Include="Microsoft.Owin.Security.Google">
169-
<HintPath>..\..\packages\Microsoft.Owin.Security.Google.3.0.1\lib\net45\Microsoft.Owin.Security.Google.dll</HintPath>
169+
<HintPath>..\..\packages\Microsoft.Owin.Security.Google.4.2.2\lib\net45\Microsoft.Owin.Security.Google.dll</HintPath>
170170
</Reference>
171171
<Reference Include="Microsoft.Owin.Security.Twitter">
172-
<HintPath>..\..\packages\Microsoft.Owin.Security.Twitter.3.0.1\lib\net45\Microsoft.Owin.Security.Twitter.dll</HintPath>
172+
<HintPath>..\..\packages\Microsoft.Owin.Security.Twitter.4.2.2\lib\net45\Microsoft.Owin.Security.Twitter.dll</HintPath>
173173
</Reference>
174174
<Reference Include="Microsoft.Owin.Security.MicrosoftAccount">
175-
<HintPath>..\..\packages\Microsoft.Owin.Security.MicrosoftAccount.3.0.1\lib\net45\Microsoft.Owin.Security.MicrosoftAccount.dll</HintPath>
175+
<HintPath>..\..\packages\Microsoft.Owin.Security.MicrosoftAccount.4.2.2\lib\net45\Microsoft.Owin.Security.MicrosoftAccount.dll</HintPath>
176176
</Reference>
177177
</ItemGroup>
178178
<ItemGroup>
@@ -333,4 +333,4 @@
333333
</Target>
334334
<Target Name="AfterBuild">
335335
</Target> -->
336-
</Project>
336+
</Project>

0 commit comments

Comments
 (0)