Skip to content

Commit 622528c

Browse files
committed
UI Fix. Fixes a wierd bug after package upgrade where Kudu.Services.Web is not found when opening extension in Kudu portal.
1 parent fcc737a commit 622528c

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,4 @@ azuredeploy.parameters.serviceplan.local.json
4949
/Letsencrypt.Azure.Core.Test/unoeuro.json
5050
.vs/
5151
/LetsEncrypt.ResourceGroup/Templates/azuredeploy.acm.parameters.local.json
52+
*.pubxml
Binary file not shown.

LetsEncrypt-SiteExtension/Controllers/HomeController.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -217,9 +217,9 @@ public async Task<ActionResult> Install(RequestAndInstallModel model)
217217
PFXPassword = settings.PFXPassword,
218218
RSAKeyLength = settings.RSAKeyLength,
219219
};
220-
var thumbprint = await new CertificateManager(settings).RequestAndInstallInternalAsync(target);
221-
if (thumbprint != null)
222-
return RedirectToAction("Hostname", new { id = thumbprint });
220+
var certModel = await new CertificateManager(settings).RequestAndInstallInternalAsync(target);
221+
if (certModel != null)
222+
return RedirectToAction("Hostname", new { id = certModel.CertificateInfo.Certificate.Thumbprint });
223223
}
224224
SetViewBagHostnames();
225225
return View(model);

LetsEncrypt-SiteExtension/LetsEncrypt.SiteExtension.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@
4848
<DocumentationFile>bin\LetsEncrypt.SiteExtension.XML</DocumentationFile>
4949
</PropertyGroup>
5050
<ItemGroup>
51+
<Reference Include="Kudu.Services.Web, Version=62.60603.3754.0, Culture=neutral, processorArchitecture=MSIL">
52+
<SpecificVersion>False</SpecificVersion>
53+
<HintPath>..\dlls\Kudu.Services.Web.dll</HintPath>
54+
</Reference>
5155
<Reference Include="Microsoft.Azure.Graph.RBAC, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
5256
<HintPath>..\packages\Microsoft.Azure.Graph.RBAC.2.2.0-preview\lib\net45\Microsoft.Azure.Graph.RBAC.dll</HintPath>
5357
<Private>True</Private>

dlls/Kudu.Services.Web.dll

55 KB
Binary file not shown.

0 commit comments

Comments
 (0)