gpt4 book ai didi

asp.net-mvc-5 - 如何重命名 web.config 转换

转载 作者:行者123 更新时间:2023-12-03 21:22:15 26 4
gpt4 key购买 nike

我在 Visual Studio 2015 中使用 ASP.net MVC 5 解决方案。我有以下 web.config
web config transforms

我如何将它们重命名为

  • Web.Integration.config
  • Web.Staging.config
  • Web.Production.config

  • 当我右键单击它们时,我没有重命名选项!

    最佳答案

    您可以复制文件,重命名它们并手动编辑 .csproj 文件以包含它们(替换生成的文件),如下所示:

    <Content Include="Web.Integration.config">
    <DependentUpon>Web.config</DependentUpon>
    <SubType>Designer</SubType>
    </Content>
    <Content Include="Web.Staging.config">
    <DependentUpon>Web.config</DependentUpon>
    <SubType>Designer</SubType>
    </Content>
    <Content Include="Web.Production.config">
    <DependentUpon>Web.config</DependentUpon>
    <SubType>Designer</SubType>
    </Content>

    不幸的是,我没有找到通过 Visual Studio 实现这一点的方法。

    关于asp.net-mvc-5 - 如何重命名 web.config 转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38371196/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com