vs项目发布时提示类似Default-Web.config Connection String”参数不能为 Null 或空的报错问题
Posted 真爱无限
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vs项目发布时提示类似Default-Web.config Connection String”参数不能为 Null 或空的报错问题相关的知识,希望对你有一定的参考价值。
参考地址:
http://stackoverflow.com/questions/28996604/the-defaultconnection-web-config-connection-string-argument-cannot-be-null-or
Create a Parameters.xml file in the Project root with the following content:
<?xml version="1.0" encoding="utf-8" ?>
<parameters>
<parameter name="DefaultConnection-Web.config Connection String"
description="DefaultConnection"
defaultValue="Server=tcp:x.database.windows.net,1433;Database=x_db;User ID=x@y;Password=z;Trusted_Connection=False;etc." tags="" />
</parameters>
意思就是在项目的要目录下,创建一个 Parameters.xml 名称的文件,内容就是上面的xml。
改成自己的名称:
然后发布就不会报错了,我也不知道这是怎么回事,应该是用来更新服务器上的连接串的,也可以选择不更新。
以上是关于vs项目发布时提示类似Default-Web.config Connection String”参数不能为 Null 或空的报错问题的主要内容,如果未能解决你的问题,请参考以下文章
在vs中打开MVC项目时提示:未安装项目的目标框架,可是安装.NetFramework 4.5.2时提示像是已经安装了