问题标签 [web.config-transform]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
asp.net - How to set debug false for release mode
I have this web.config file with the compilation option set as below
Web.config
And here is what Visual Studio puts for release mode by default.
Web.Release.config
I am using this for MVC4 project. Based on this tutorial, I was expecting that minified versions of js and css would be served, when the application is run under Release Mode. But this doesn't seem to be working and non-minified versions of js and css are being served. On the other hand, if I explicitly set debug to false in web.config, then the min versions are served correctly.
It seems like compilation tag Transform issue when the application is run under Release Mode, but I don't understand what's wrong with the same in Web.Release.config.
In short, I am unable to get bundling and minification working, by running application under Release Mode.
asp.net - Web 配置中的自定义错误在服务器上不起作用
我有一个应用程序,我在 web.config 中使用了自定义错误。问题是,当我在本地主机上对其进行测试时,它可以正常工作,但是当我将其部署到服务器上时,它却无法正常工作。下面是我在服务器 web.config 文件上使用的 web.config 自定义错误方法。
entity-framework - How do I make entity-framework migrations use web.config transforms?
When you apply any commands like
- 'update-database'
- 'add-migration'
The EF uses the connection string in your main web.config
even if you have configured web.debug.config and web.release.config with xml transformation
This means, I have to go in and risk forgetting to change my true web.config
back prior to a release.
asp.net - Web.Config 转换:使用 Insert() 转换多个元素
使用 Visual Studio 2013 高级版。
目标:我在 web.config 中定义了多个 WCF 服务。为了保持 web.config 文件的可读性并使添加服务更简单,我想使用 VS2013 的 XML 转换为我的开发/生产环境的每个服务定义添加一些样板元素。
问题:我有多个<service>
标签,但只有第一个被正确转换。
这是我的 Web.Config 的简化版本,其中定义了两个服务:
我想创建一个元数据交换端点并对每个<service>
标签做一些其他的事情(未显示)。
这是一个简化的 Web.Debug.Config,仅显示 MetadataExchange 端点:
我明白了:
XPath
我已经在 的xdt:Locator
属性中尝试了这些变体:
所有这些都只转换第一<service>
部分。
我尝试将xdt:Locator
属性放在<endpoint>
标签等上,但无济于事。
我有多个 XPath 可视化工具和工具,当与上面的 XPath #1 一起使用时,它们都匹配两个标签。 <service>
此外,此错误发生在“预览转换”和 Web 部署工具预览中。
我究竟做错了什么?
(此时我的解决方法是在我原来的 Web.Config 中包含 Mex 端点和其余的调试内容,然后使用“RemoveAll()”将其删除,但这使我的 Web.Config 非常混乱和困难读书。)
asp.net - 站点访问期间未找到网络路径错误
我刚刚将我的 asp.net 网站从一台主机迁移到另一台主机。它在旧主机上运行良好,但在新主机上出现此错误:
我的新主机再次说 web.config 文件存在一些问题,我应该与开发人员联系。现在因为我已经从他们的服务中迁移了。没有备份支持,他们没有响应。我设法在备份中跟踪 web.config 文件,但无法理解错误。
下面附上代码:
c# - 有没有办法在给定源文件和目标文件的情况下创建 web.config 转换?
我有一个为我的生产环境手动编辑的源web.config
文件和一个目标文件。web.config
是否有实用程序、工具或方法在两个文件之间自动创建 Web 配置转换?
c# - How to change db connection programmatically c# Entity Framework
I've built my project and named the db connection "VMaxEntities"
The connection string exists in web.config.
I have another connection string "Development_VMaxEntities"
Whenever I call the db, I use the code using (VMaxEntities db = new VMaxEntities())
This calls:
public partial class VMaxEntities : DbContext
{
public VMaxEntities()
: base("name=VMaxEntities")
{
}
What I want to do is connect to a development database instead of the live one, IF the current URI contains localhost.
So - thanks to cgotberg's answer below, here's what I used to get it working: (note, I add the password here instead of in web.config)
#xA;asp.net - 站点地图提供程序错误
嗨,我无法检测到此错误。我检查了 web.config 文件并且没有站点地图标签。我应该在哪里寻找这个。有人能指出我正确的方向吗
asp.net-mvc - 合并后从外部文件转换 appSettings
我想做的是transform
其中之一appSettings
在外部文件中:
这是external.config
网页配置
Web.Debug.config
在正确构建之后configuration
,在我的示例中Debug
只有这个:
但应该是:
我试图让appSettings
2 个或更多不同project
的 1-st共享WCF Service
第二个ASP.NET MVC 4
Application
编辑:
我试图将其移至file
attribute
,Web.Debug.config
但它也不起作用。
问题是:
我怎么能完成这样的事情?甚至可能吗?
asp.net - 通过编码将值从 web.config 传递到 Dropdown select
我在数据库中的表中有一个值作为“试用”,我想将此值存储在 web.config 中,当试用模式为真时,应自动从 web.config 获取此值。如何完成这项任务?(将数据库中的值存储到 web.config 中)。