Skip to content

Commit 2b7afcf

Browse files
committed
Do not copy referenced assemblies to output directory
1 parent 4bb74a2 commit 2b7afcf

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Packages/com.unity.ide.visualstudio/Editor/ProjectGeneration/ProjectGeneration.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,7 @@ private void AppendReference(string fullReference, StringBuilder projectBuilder)
586586
var escapedFullPath = EscapedRelativePathFor(fullReference, out _);
587587
projectBuilder.Append(@" <Reference Include=""").Append(Path.GetFileNameWithoutExtension(escapedFullPath)).Append(@""">").Append(k_WindowsNewline);
588588
projectBuilder.Append(" <HintPath>").Append(escapedFullPath).Append("</HintPath>").Append(k_WindowsNewline);
589+
projectBuilder.Append(" <Private>False</Private>").Append(k_WindowsNewline);
589590
projectBuilder.Append(" </Reference>").Append(k_WindowsNewline);
590591
}
591592

0 commit comments

Comments
 (0)