停止 Visual Studio 2019 在项目文件夹中自动添加文件
Stop Visual Studio 2019 from automatically adding files in project folder
我在 Visual Studio 2019 年有一个 .NET Core 3 项目。当我通过 Windows 资源管理器复制并粘贴文件到项目文件夹时,Visual Studio 自动包含文件到我的项目中,这是我不想发生的。是否有禁用此功能的设置?
那么,您可以修改已知的项目文件(c# 项目为 .csproj),通过自定义项目包含路径来专门满足您的包含文件。
更多详情,您可以查看这些:
https://docs.microsoft.com/en-us/visualstudio/msbuild/msbuild-well-known-item-metadata?view=vs-2015&redirectedfrom=MSDN
Understanding a csproj assembly reference
Including content files in .csproj that are outside the project cone
放心地享受和部署!
从 VS 2017 开始,.NET 中的项目格式发生了变化。您需要在 .csproj 文件的顶部添加 标签:
<PropertyGroup>
<EnableDefaultItems>false</EnableDefaultItems>
</PropertyGroup>
以下是您问题的完整答案:
我在 Visual Studio 2019 年有一个 .NET Core 3 项目。当我通过 Windows 资源管理器复制并粘贴文件到项目文件夹时,Visual Studio 自动包含文件到我的项目中,这是我不想发生的。是否有禁用此功能的设置?
那么,您可以修改已知的项目文件(c# 项目为 .csproj),通过自定义项目包含路径来专门满足您的包含文件。
更多详情,您可以查看这些: https://docs.microsoft.com/en-us/visualstudio/msbuild/msbuild-well-known-item-metadata?view=vs-2015&redirectedfrom=MSDN
Understanding a csproj assembly reference
Including content files in .csproj that are outside the project cone
放心地享受和部署!
从 VS 2017 开始,.NET 中的项目格式发生了变化。您需要在 .csproj 文件的顶部添加
<PropertyGroup>
<EnableDefaultItems>false</EnableDefaultItems>
</PropertyGroup>
以下是您问题的完整答案: