MSBuild:如何始终包含文件(导入项目)?
我有一个文件:CoreAssemblyInfo.cs,我想在属性文件夹下显示在我的项目中...
我意识到我可以将现有文件添加为链接,但我希望以某种方式使用 MSBuild 来拥有我的所有“核心”的东西。我尝试执行以下操作:
<Import Project="Core.csproj" />
Core.csproj:
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Compile Include="Properties\CoreAssemblyInfo.cs" />
</ItemGroup>
</Project>
但它没有出现在项目中...我正在寻找的可能吗?
I have a file: CoreAssemblyInfo.cs that I want to show up in my projects under the properties folder...
I realize that I can add the existing file as a link, but I was hoping to use MSBuild somehow to have all my "core" stuff. I tried doing the following:
<Import Project="Core.csproj" />
Core.csproj:
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Compile Include="Properties\CoreAssemblyInfo.cs" />
</ItemGroup>
</Project>
But it doesn't show up in the project... is what I'm looking for even possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试用:
Try out: