DevOps Azure的CD管道中的变量替换

时间:2019-01-14 09:25:30

标签: azure-devops azure-web-sites continuous-deployment continuous-delivery

我们在配置文件中进行了如下设置。

<forms loginUrl="~/myform/SignIn" name="myAppAuth" timeout="600" protection="All" path="/" requireSSL="true" />

<serviceMetadata httpsGetEnabled="true" />

<machineKey validationKey="abc" decryptionKey="xyz" validation="SHA1" decryption="AES" />

如何在上面的CD管道变量部分中定义变量值。就像下面的两个变量一样有效?还是有其他解决方案?

<machineKey validationKey="abc" decryptionKey="xyz" validation="SHA1" decryption="AES" />

名称:-解密密钥 :-xyz

名称:-validationKey :-abc

<serviceMetadata httpsGetEnabled="true" />

名称:-httpsGetEnabled :-正确

<forms loginUrl="~/myform/SignIn" name="myAppAuth" timeout="600" protection="All" path="/" requireSSL="true" />

名称:-loginUrl :-〜/ myform / SignIn

关于, 灰烬

0 个答案:

没有答案