如何全局设置 Visual Studio 项目的起始 URL?
我需要更改项目的起始 URL。当我在属性页上设置起始 URL 时,它会写入 csproj.user
文件,而不是 csproj
。我尝试将
放入
部分的 csproj
中,但这不起作用。
有什么方法可以设置该属性并将其传播给整个团队,还是每个人都必须手动进行更改?
I need to change the start URL of a project. When I set the start URL on the property page, it gets written to the csproj.user
file and not the csproj
. I tried putting the <StartExternalURL>
in the csproj
in the <WebProjectProperties>
section, but that did not work.
Is there any way I can set that property and propagate it to the entire team, or is everyone just going to have to make the change manually?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该在源代码管理下添加
csproj.user
文件。当每个人检查后,他们的起始 URL 将被正确设置。You should add the
csproj.user
file under source control. When everyone checks it out, their start URL will be set correctly.