Skip to content

Commit

Permalink
Remove the Copy to Output Directory file property
Browse files Browse the repository at this point in the history
  • Loading branch information
sharwell committed Oct 15, 2014
1 parent aaac8c2 commit 9a4e145
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions DanTup.DartVS.Vsix/ProjectSystem/DartFileNodeProperties.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ public override prjBuildAction BuildAction
}
}

[Browsable(false)]
public override CopyToOutputDirectoryBehavior CopyToOutputDirectory
{
get
Expand All @@ -36,11 +37,6 @@ public override CopyToOutputDirectoryBehavior CopyToOutputDirectory

set
{
if (Node.ItemNode.IsVirtual && value != CopyToOutputDirectoryBehavior.DoNotCopy)
{
Node.ItemNode = Node.ProjectManager.AddFileToMSBuild(Node.VirtualNodeName, ProjectFileConstants.Content, null);
}

base.CopyToOutputDirectory = value;
}
}
Expand Down

0 comments on commit 9a4e145

Please sign in to comment.