简体   繁体   English

如果有较新的按钮,则找不到副本

[英]Can't find copy if newer button

I am learning how to use SFML.NET with Microsoft visual Studio 2014 with C# and I added the C# dll's found in the lib folder using add existing files on My solution. 我正在学习如何将SFML.NET与带有C#的Microsoft visual Studio 2014一起使用,并使用“我的解决方案”中的添加现有文件在lib文件夹中添加了C#dll。

I cannot however, find the copy if newer button in the dll's property anywhere. 但是,我无法在dll属性的任何位置找到copy if newer按钮)。

All the dll's say in there properties is the following: 那里的所有dll都是这样的:

(name)
Date created
Date modified
File Path
File size 
Read only

Use the context (right click) menu on the DLLs in Solution Explorer, select "Properties". 使用解决方案资源管理器中DLL的上下文(右键单击)菜单,选择“属性”。 The "Copy to output directory" field of the properties panel includes a "Copy if newer" value. 属性面板的“复制到输出目录”字段包含“如果更新则复制”值。

If you are using .net core, you can manually edit the .csproj file, and add something like this: 如果您使用的是.net core,则可以手动编辑.csproj文件,并添加如下内容:

  <ItemGroup>
    <None Update="FileIWantToCopy.txt">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
  </ItemGroup>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM