我希望有人可以幫助我下面的代碼。自定義Windows Azure包
在這一刻我有一個Windows Azure Pack的問題,我想定製MgmtSvc-AuthSite和MgmtSvc-TenantSite來更改文本,但是例如在Chrome/Firefox中我可以在HTML中看到代碼:
<div class="kt-introduction">
<h1>Unlimited Possibilities</h1>
<div class="kt-offering-value">
<span>The future of cloud computing is @ your fingertips!</span>
<ul>
<li>Rich and powerful services</li>
<li>Effortless management experience</li>
<li>Open and flexible plataform</li>
<li>Quickly build, deploy and manage applications across a global network</li>
</ul>
</div>
但是當我想改變這個文本,我只看到這一點:
@using Microsoft.WindowsAzure.Server.CommonPortalStrings;
<div class="kt-hero">
<img src="/Content/Images/hero.png" alt="Hero"/>
</div>
<div class="kt-main-content-area">
<div class="kt-introduction">
<h1>@TenantPortalControllerResources.UnlimitedPossibilities</h1>
<div class="kt-offering-value">
<span>@TenantPortalControllerResources.CloudComputingWelcomeMessage</span>
<ul>
<li>@TenantPortalControllerResources.CloudServicesBenefits</li>
<li>@TenantPortalControllerResources.CloudManagementWelcomeMessage</li>
<li>@TenantPortalControllerResources.FlexiblePlatformBenefit</li>
<li>@TenantPortalControllerResources.DeployApplicationQuickly</li>
</ul>
</div>
</div>
所以...我有好幾個小時試圖找到源更改代碼,但我失敗了......在MSDN我覺得與PowerShell的
Unprotect-MgmtSvcConfiguration -namespace AuthSite
Unprotect-MgmtSvcConfiguration -namespace TenantSite
的命令,但它不工作,所以我出來的想法!...