Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Commit

Permalink
Remove workaround for VSCode omnisharp
Browse files Browse the repository at this point in the history
As of dotnet/vscode-csharp#4113
we no longer need to disable the referenceoutputassemblies.
  • Loading branch information
miniwolf committed Oct 23, 2020
1 parent d4564da commit 5e1ced5
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,6 @@ string ProjectText(
projectBuilder.Append(" <ProjectReference Include=\"").Append(reference.name).Append(GetProjectExtension()).Append("\">").Append(k_WindowsNewline);
projectBuilder.Append(" <Project>{").Append(ProjectGuid(reference.name)).Append("}</Project>").Append(k_WindowsNewline);
projectBuilder.Append(" <Name>").Append(reference.name).Append("</Name>").Append(k_WindowsNewline);
projectBuilder.Append(" <ReferenceOutputAssembly>false</ReferenceOutputAssembly>").Append(k_WindowsNewline);
projectBuilder.Append(" </ProjectReference>").Append(k_WindowsNewline);
}
}
Expand Down

0 comments on commit 5e1ced5

Please sign in to comment.