How can I limit builds to only support EN “Microsoft.Expression.Interactions.resources.dll”, and avoid DE, KR, FR, ES, etc…?

前端 未结 4 1246
日久生厌
日久生厌 2021-02-04 06:00

When I build my WPF Project, it creates several language folders, each containing \"Microsoft.Expression.Interactions.resources.dll\".

The weird thing is that I never cr

4条回答
  •  南旧
    南旧 (楼主)
    2021-02-04 06:25

    I just deal with it like this. Go to the properties of your reference and do this:

    Set "Copy local = false"

    Save

    Set "Copy local = true"

    Save

    and that's it.

    Visual Studio 2010 doesn't initially put: True in the reference tag and setting "copy local" to false causes it to create the tag. Afterwards it will set it to true and false accordingly.

提交回复
热议问题