Fix binary names and add internalsvisible flag for tests

This commit is contained in:
Karl Burtram
2016-07-25 18:19:20 -07:00
parent ee2dc04e39
commit 7ff6cc34a0
4 changed files with 4 additions and 3 deletions

View File

@@ -38,9 +38,8 @@ namespace Microsoft.SqlTools.ServiceLayer.LanguageServices
/// <summary> /// <summary>
/// Default, parameterless constructor. /// Default, parameterless constructor.
/// TODO: Figure out how to make this truely singleton even with dependency injection for tests
/// </summary> /// </summary>
public LanguageService() internal LanguageService()
{ {
} }

View File

@@ -41,4 +41,4 @@ using System.Runtime.InteropServices;
[assembly: AssemblyFileVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0.0")] [assembly: AssemblyInformationalVersion("1.0.0.0")]
[assembly: InternalsVisibleTo("Microsoft.SqlTools.EditorServices.Test.Protocol")] [assembly: InternalsVisibleTo("Microsoft.SqlTools.ServiceHost.Test")]

View File

@@ -1,4 +1,5 @@
{ {
"name": "Microsoft.SqlTools.ServiceHost",
"version": "1.0.0-*", "version": "1.0.0-*",
"buildOptions": { "buildOptions": {
"debugType": "portable", "debugType": "portable",

View File

@@ -1,4 +1,5 @@
{ {
"name": "Microsoft.SqlTools.ServiceHost.Test",
"version": "1.0.0-*", "version": "1.0.0-*",
"buildOptions": { "buildOptions": {
"debugType": "portable" "debugType": "portable"