Visual Studio中的launchSettings.json

mgdq6dx1  于 2023-10-23  发布在  其他
关注(0)|答案(1)|浏览(133)

有没有办法让每个开发人员都有这个文件?例如:launchSettings.machinename.json
我最初认为它应该在git中被忽略,但后来我偶然发现了这个问题。
https://github.com/github/gitignore/pull/2705
我可以做一个自定义的配置文件类型的项目,但然后这不是使用IIS。创建配置文件和尝试覆盖applicationUrl的变体都不起作用

w8f9ii69

w8f9ii691#

我看不出这样做的任何方式,但是git提供了专门针对这种情况的忽略更改的方法
https://learn.microsoft.com/en-us/azure/devops/repos/git/ignore-files?view=azure-devops&tabs=visual-studio
https://medium.com/@igloude/git-skip-worktree-and-how-i-used-to-hate-config-files-e84a44a8c859
这么做
git update-index --skip-worktree launchSettings.json
撤消此

git update-index --no-skip-worktree launchSettings.json

要查看由此更改的文件,

git ls -files -v

相关问题