Skip to content

Commit bc97b9f

Browse files
Bump Microsoft.AspNet.Identity.Owin
Bumps [Microsoft.AspNet.Identity.Owin](https://github.com/aspnet/AspNetIdentity) from 1.0.0 to 2.2.4. - [Commits](https://github.com/aspnet/AspNetIdentity/commits) --- updated-dependencies: - dependency-name: Microsoft.AspNet.Identity.Owin dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 0f99c21 commit bc97b9f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

delegation/ContosoWebApplication/ContosoWebApplication/Controllers/AccountController.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class AccountController : Controller
3030
//Identifier under credentials
3131
string ApimRestId = "integration";
3232
//Primary key
33-
string ApimRestPK = "PbtTFo9SoK7PuX3SVkCzxPqQ5K90vGkyTJbYAkLYPjLvnNUJBiVrR35fEdYLBXLeYjwJcCR1CLeOQhlqEv137g==";
33+
string ApimRestPK = "<token>";
3434

3535
DateTime ApimRestExpiry = DateTime.UtcNow.AddDays(10);
3636
string ApimRestApiVersion = "2019-01-01";
@@ -424,7 +424,7 @@ private StringContent GetContent(string content)
424424

425425
public async Task<ActionResult> Delegate()
426426
{
427-
string key = "A83LOoMIlPULlEBu9GuIoZoT9HSMHhGZTlvjhw6FNgMO0gTSis4u0otFPdcelheOF7asMs6pQUSP66w8EqbBOg==";
427+
string key = "<key>";
428428
string returnUrl = Request.QueryString["returnUrl"];
429429
string productId = Request.QueryString["productId"];
430430
string subscriptionId = Request.QueryString["subscriptionId"];

delegation/ContosoWebApplication/ContosoWebApplication/Web.Release.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
-->
1717
<connectionStrings>
1818
<add name="contosoinc_db"
19-
connectionString="Data Source=tcp:p2n8ogfecm.database.windows.net,1433;Initial Catalog=contosoinc_db;User ID=contoso@p2n8ogfecm;Password=ctso$455"
19+
connectionString="<DATABASE_CONNECTION>"
2020
xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
2121
</connectionStrings>
2222
<system.web>

delegation/ContosoWebApplication/ContosoWebApplication/Web.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<!-- <add name="DefaultConnection" connectionString="Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirectory|\aspnet-ContosoWebApplication-20150121080022.mdf;Initial Catalog=aspnet-ContosoWebApplication-20150121080022;Integrated Security=True"
1313
providerName="System.Data.SqlClient" /> -->
1414
<add name="DefaultConnection"
15-
connectionString="Data Source=tcp:p2n8ogfecm.database.windows.net,1433;Initial Catalog=contosoinc_db;User ID=contoso@p2n8ogfecm;Password=ctso$455" providerName="System.Data.SqlClient" />
15+
connectionString="<DATABASE_CONNECTION>" providerName="System.Data.SqlClient" />
1616
</connectionStrings>
1717
<appSettings>
1818
<add key="webpages:Version" value="3.0.0.0" />

delegation/ContosoWebApplication/ContosoWebApplication/packages.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="Antlr" version="3.4.1.9004" targetFramework="net45" />
44
<package id="bootstrap" version="3.4.1" targetFramework="net45" />
@@ -7,7 +7,7 @@
77
<package id="jQuery.Validation" version="1.17.0" targetFramework="net45" />
88
<package id="Microsoft.AspNet.Identity.Core" version="1.0.0" targetFramework="net45" />
99
<package id="Microsoft.AspNet.Identity.EntityFramework" version="1.0.0" targetFramework="net45" />
10-
<package id="Microsoft.AspNet.Identity.Owin" version="1.0.0" targetFramework="net45" />
10+
<package id="Microsoft.AspNet.Identity.Owin" version="2.2.4" targetFramework="net45" />
1111
<package id="Microsoft.AspNet.Mvc" version="5.0.0" targetFramework="net45" />
1212
<package id="Microsoft.AspNet.Razor" version="3.0.0" targetFramework="net45" />
1313
<package id="Microsoft.AspNet.Web.Optimization" version="1.1.1" targetFramework="net45" />

0 commit comments

Comments
 (0)