作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Visual Studio 2013 中,我的一个项目包括:
<ItemGroup>
<Compile Include="Entity\Abstract\Entity.fs" />
<Compile Include="Entity\HumanEntity.fs" />
<Compile Include="State\Abstract\State.fs" />
<Compile Include="State\Abstract\HumanState.fs" />
<Compile Include="State\Human\HumanIdleState.fs" />
<Compile Include="State\Human\HumanAwakenState.fs" />
</ItemGroup>
The project 'Entity.fsproj' could not be opened because opening it would cause a folder to be rendered multiple times in the solution explorer. One such problematic item is 'State\Abstract\State.fs'.
<ItemGroup>
<Compile Include="Entity\AbstractEntity\Entity.fs" />
<Compile Include="Entity\HumanEntity.fs" />
<Compile Include="State\AbstractState\State.fs" />
<Compile Include="State\AbstractState\HumanState.fs" />
<Compile Include="State\Human\HumanIdleState.fs" />
<Compile Include="State\Human\HumanAwakenState.fs" />
</ItemGroup>
最佳答案
不幸的是,这是 Visual Studio 中 F# 项目系统的限制。更详细的分析可以在 this article 中找到。 .
即将在 Visual F# Power Tools 中支持文件夹组织,我们必须添加验证以防止用户使用菜单项在项目中添加具有重复名称的文件夹(参见 the code 和 relevant discussion )。当然,我们不能通过编辑 fsproj
来阻止用户这样做。文件。
也许您可以向 microsoft dot com 上的 fsbugs 发送建议,以便在即将发布的 Visual F# 工具版本中修复它。
关于f# - Visual Studio F# 项目 : Can't have two folders in a file tree with the same name?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22845020/
我是一名优秀的程序员,十分优秀!