Skip to content

Commit

Permalink
Merge pull request #1446 from rhuvendiek/master
Browse files Browse the repository at this point in the history
Do not add <Link> for .NET resources or the resource will not be properly embedded.
  • Loading branch information
starkos committed May 16, 2020
2 parents 09dbfca + 79eb04b commit b47a949
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/vstudio/vs2005_dotnetbase.lua
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@

if #contents > 0 or external then
_p(2,'<%s%s Include="%s">', info.action, condition, fname)
if external then
if external and info.action ~= "EmbeddedResource" then
_p(3,'<Link>%s</Link>', path.translate(link))
end
if #contents > 0 then
Expand Down

0 comments on commit b47a949

Please sign in to comment.