mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-13 17:23:02 -05:00
Update projects for netcoreapp2.1 SDK (#603)
* Update projects for netcoreapp2.1 SDK * Fix whitespace * Fix issue in Nuget config file
This commit is contained in:
@@ -5,8 +5,8 @@ IF [%_BuildConfiguration%] NEQ [] GOTO Start
|
|||||||
SET _BuildConfiguration=Debug
|
SET _BuildConfiguration=Debug
|
||||||
|
|
||||||
:Start
|
:Start
|
||||||
SET _PerfTestSourceLocation="%WORKINGDIR%\test\Microsoft.SqlTools.ServiceLayer.PerfTests\bin\%_BuildConfiguration%\netcoreapp2.0\win7-x64\publish"
|
SET _PerfTestSourceLocation="%WORKINGDIR%\test\Microsoft.SqlTools.ServiceLayer.PerfTests\bin\%_BuildConfiguration%\netcoreapp2.1\win7-x64\publish"
|
||||||
SET _ServiceSourceLocation="%WORKINGDIR%\src\Microsoft.SqlTools.ServiceLayer\bin\%_BuildConfiguration%\netcoreapp2.0\win7-x64\publish"
|
SET _ServiceSourceLocation="%WORKINGDIR%\src\Microsoft.SqlTools.ServiceLayer\bin\%_BuildConfiguration%\netcoreapp2.1\win7-x64\publish"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -252,7 +252,7 @@ Task("TestCore")
|
|||||||
{
|
{
|
||||||
var logFile = System.IO.Path.Combine(logFolder, $"{testProject}-core-result.trx");
|
var logFile = System.IO.Path.Combine(logFolder, $"{testProject}-core-result.trx");
|
||||||
var testWorkingDir = System.IO.Path.Combine(testFolder, testProject);
|
var testWorkingDir = System.IO.Path.Combine(testFolder, testProject);
|
||||||
Run(dotnetcli, $"test -f netcoreapp2.0 --logger \"trx;LogFileName={logFile}\"", testWorkingDir)
|
Run(dotnetcli, $"test -f netcoreapp2.1 --logger \"trx;LogFileName={logFile}\"", testWorkingDir)
|
||||||
.ExceptionOnError($"Test {testProject} failed for .NET Core.");
|
.ExceptionOnError($"Test {testProject} failed for .NET Core.");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -3,17 +3,17 @@
|
|||||||
"DotNetFolder": ".dotnet",
|
"DotNetFolder": ".dotnet",
|
||||||
"DotNetInstallScriptURL": "https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0-preview2/scripts/obtain",
|
"DotNetInstallScriptURL": "https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0-preview2/scripts/obtain",
|
||||||
"DotNetChannel": "preview",
|
"DotNetChannel": "preview",
|
||||||
"DotNetVersion": "1.0.0-preview2-003121",
|
"DotNetVersion": "2.1.300-preview3-008627",
|
||||||
"BuildToolsFolder": ".tools",
|
"BuildToolsFolder": ".tools",
|
||||||
"ArtifactsFolder": "artifacts",
|
"ArtifactsFolder": "artifacts",
|
||||||
"PackageName": "Microsoft.SqlTools.ServiceLayer",
|
"PackageName": "Microsoft.SqlTools.ServiceLayer",
|
||||||
"TestProjects": {
|
"TestProjects": {
|
||||||
"Microsoft.SqlTools.ServiceLayer.UnitTests": [
|
"Microsoft.SqlTools.ServiceLayer.UnitTests": [
|
||||||
"netcoreapp2.0"
|
"netcoreapp2.1"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"Frameworks": [
|
"Frameworks": [
|
||||||
"netcoreapp2.0"
|
"netcoreapp2.1"
|
||||||
],
|
],
|
||||||
"MainProjects": [
|
"MainProjects": [
|
||||||
"Microsoft.SqlTools.ServiceLayer",
|
"Microsoft.SqlTools.ServiceLayer",
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
<configuration >
|
<configuration >
|
||||||
<packageSources>
|
<packageSources>
|
||||||
<clear />
|
<clear />
|
||||||
|
<add key="Nuget Preview" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
|
||||||
<add key="Nuget" value="https://www.nuget.org/api/v2" />
|
<add key="Nuget" value="https://www.nuget.org/api/v2" />
|
||||||
<add key="DataTools Nuget" value="./bin/nuget" />
|
<add key="DataTools Nuget" value="./bin/nuget" />
|
||||||
</packageSources>
|
</packageSources>
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ namespace Microsoft.SqlTools.Credentials
|
|||||||
Keys.Culture = value;
|
Keys.Culture = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public static string CredentialsServiceInvalidCriticalHandle
|
public static string CredentialsServiceInvalidCriticalHandle
|
||||||
{
|
{
|
||||||
@@ -35,7 +35,7 @@ namespace Microsoft.SqlTools.Credentials
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.CredentialsServiceInvalidCriticalHandle);
|
return Keys.GetString(Keys.CredentialsServiceInvalidCriticalHandle);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string CredentialsServicePasswordLengthExceeded
|
public static string CredentialsServicePasswordLengthExceeded
|
||||||
{
|
{
|
||||||
@@ -43,7 +43,7 @@ namespace Microsoft.SqlTools.Credentials
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.CredentialsServicePasswordLengthExceeded);
|
return Keys.GetString(Keys.CredentialsServicePasswordLengthExceeded);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string CredentialsServiceTargetForDelete
|
public static string CredentialsServiceTargetForDelete
|
||||||
{
|
{
|
||||||
@@ -51,7 +51,7 @@ namespace Microsoft.SqlTools.Credentials
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.CredentialsServiceTargetForDelete);
|
return Keys.GetString(Keys.CredentialsServiceTargetForDelete);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string CredentialsServiceTargetForLookup
|
public static string CredentialsServiceTargetForLookup
|
||||||
{
|
{
|
||||||
@@ -59,7 +59,7 @@ namespace Microsoft.SqlTools.Credentials
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.CredentialsServiceTargetForLookup);
|
return Keys.GetString(Keys.CredentialsServiceTargetForLookup);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string CredentialServiceWin32CredentialDisposed
|
public static string CredentialServiceWin32CredentialDisposed
|
||||||
{
|
{
|
||||||
@@ -67,7 +67,7 @@ namespace Microsoft.SqlTools.Credentials
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.CredentialServiceWin32CredentialDisposed);
|
return Keys.GetString(Keys.CredentialServiceWin32CredentialDisposed);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
public class Keys
|
public class Keys
|
||||||
@@ -75,22 +75,22 @@ namespace Microsoft.SqlTools.Credentials
|
|||||||
static ResourceManager resourceManager = new ResourceManager("Microsoft.SqlTools.Credentials.Localization.SR", typeof(SR).GetTypeInfo().Assembly);
|
static ResourceManager resourceManager = new ResourceManager("Microsoft.SqlTools.Credentials.Localization.SR", typeof(SR).GetTypeInfo().Assembly);
|
||||||
|
|
||||||
static CultureInfo _culture = null;
|
static CultureInfo _culture = null;
|
||||||
|
|
||||||
|
|
||||||
public const string CredentialsServiceInvalidCriticalHandle = "CredentialsServiceInvalidCriticalHandle";
|
public const string CredentialsServiceInvalidCriticalHandle = "CredentialsServiceInvalidCriticalHandle";
|
||||||
|
|
||||||
|
|
||||||
public const string CredentialsServicePasswordLengthExceeded = "CredentialsServicePasswordLengthExceeded";
|
public const string CredentialsServicePasswordLengthExceeded = "CredentialsServicePasswordLengthExceeded";
|
||||||
|
|
||||||
|
|
||||||
public const string CredentialsServiceTargetForDelete = "CredentialsServiceTargetForDelete";
|
public const string CredentialsServiceTargetForDelete = "CredentialsServiceTargetForDelete";
|
||||||
|
|
||||||
|
|
||||||
public const string CredentialsServiceTargetForLookup = "CredentialsServiceTargetForLookup";
|
public const string CredentialsServiceTargetForLookup = "CredentialsServiceTargetForLookup";
|
||||||
|
|
||||||
|
|
||||||
public const string CredentialServiceWin32CredentialDisposed = "CredentialServiceWin32CredentialDisposed";
|
public const string CredentialServiceWin32CredentialDisposed = "CredentialServiceWin32CredentialDisposed";
|
||||||
|
|
||||||
|
|
||||||
private Keys()
|
private Keys()
|
||||||
{ }
|
{ }
|
||||||
@@ -111,7 +111,7 @@ namespace Microsoft.SqlTools.Credentials
|
|||||||
{
|
{
|
||||||
return resourceManager.GetString(key, _culture);
|
return resourceManager.GetString(key, _culture);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -120,21 +120,21 @@
|
|||||||
<data name="CredentialsServiceInvalidCriticalHandle" xml:space="preserve">
|
<data name="CredentialsServiceInvalidCriticalHandle" xml:space="preserve">
|
||||||
<value>Invalid CriticalHandle!</value>
|
<value>Invalid CriticalHandle!</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="CredentialsServicePasswordLengthExceeded" xml:space="preserve">
|
<data name="CredentialsServicePasswordLengthExceeded" xml:space="preserve">
|
||||||
<value>The password has exceeded 512 bytes</value>
|
<value>The password has exceeded 512 bytes</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="CredentialsServiceTargetForDelete" xml:space="preserve">
|
<data name="CredentialsServiceTargetForDelete" xml:space="preserve">
|
||||||
<value>Target must be specified to delete a credential</value>
|
<value>Target must be specified to delete a credential</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="CredentialsServiceTargetForLookup" xml:space="preserve">
|
<data name="CredentialsServiceTargetForLookup" xml:space="preserve">
|
||||||
<value>Target must be specified to check existance of a credential</value>
|
<value>Target must be specified to check existance of a credential</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="CredentialServiceWin32CredentialDisposed" xml:space="preserve">
|
<data name="CredentialServiceWin32CredentialDisposed" xml:space="preserve">
|
||||||
<value>Win32Credential object is already disposed</value>
|
<value>Win32Credential object is already disposed</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||||
<AssemblyName>MicrosoftSqlToolsCredentials</AssemblyName>
|
<AssemblyName>MicrosoftSqlToolsCredentials</AssemblyName>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<EnableDefaultItems>false</EnableDefaultItems>
|
<EnableDefaultItems>false</EnableDefaultItems>
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ namespace Microsoft.SqlTools.Hosting
|
|||||||
Keys.Culture = value;
|
Keys.Culture = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public static string CredentialsServiceInvalidCriticalHandle
|
public static string CredentialsServiceInvalidCriticalHandle
|
||||||
{
|
{
|
||||||
@@ -35,7 +35,7 @@ namespace Microsoft.SqlTools.Hosting
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.CredentialsServiceInvalidCriticalHandle);
|
return Keys.GetString(Keys.CredentialsServiceInvalidCriticalHandle);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string CredentialsServicePasswordLengthExceeded
|
public static string CredentialsServicePasswordLengthExceeded
|
||||||
{
|
{
|
||||||
@@ -43,7 +43,7 @@ namespace Microsoft.SqlTools.Hosting
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.CredentialsServicePasswordLengthExceeded);
|
return Keys.GetString(Keys.CredentialsServicePasswordLengthExceeded);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string CredentialsServiceTargetForDelete
|
public static string CredentialsServiceTargetForDelete
|
||||||
{
|
{
|
||||||
@@ -51,7 +51,7 @@ namespace Microsoft.SqlTools.Hosting
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.CredentialsServiceTargetForDelete);
|
return Keys.GetString(Keys.CredentialsServiceTargetForDelete);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string CredentialsServiceTargetForLookup
|
public static string CredentialsServiceTargetForLookup
|
||||||
{
|
{
|
||||||
@@ -59,7 +59,7 @@ namespace Microsoft.SqlTools.Hosting
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.CredentialsServiceTargetForLookup);
|
return Keys.GetString(Keys.CredentialsServiceTargetForLookup);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string CredentialServiceWin32CredentialDisposed
|
public static string CredentialServiceWin32CredentialDisposed
|
||||||
{
|
{
|
||||||
@@ -67,7 +67,7 @@ namespace Microsoft.SqlTools.Hosting
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.CredentialServiceWin32CredentialDisposed);
|
return Keys.GetString(Keys.CredentialServiceWin32CredentialDisposed);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string ServiceAlreadyRegistered
|
public static string ServiceAlreadyRegistered
|
||||||
{
|
{
|
||||||
@@ -75,7 +75,7 @@ namespace Microsoft.SqlTools.Hosting
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.ServiceAlreadyRegistered);
|
return Keys.GetString(Keys.ServiceAlreadyRegistered);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string MultipleServicesFound
|
public static string MultipleServicesFound
|
||||||
{
|
{
|
||||||
@@ -83,7 +83,7 @@ namespace Microsoft.SqlTools.Hosting
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.MultipleServicesFound);
|
return Keys.GetString(Keys.MultipleServicesFound);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string IncompatibleServiceForExtensionLoader
|
public static string IncompatibleServiceForExtensionLoader
|
||||||
{
|
{
|
||||||
@@ -91,7 +91,7 @@ namespace Microsoft.SqlTools.Hosting
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.IncompatibleServiceForExtensionLoader);
|
return Keys.GetString(Keys.IncompatibleServiceForExtensionLoader);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string ServiceProviderNotSet
|
public static string ServiceProviderNotSet
|
||||||
{
|
{
|
||||||
@@ -99,7 +99,7 @@ namespace Microsoft.SqlTools.Hosting
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.ServiceProviderNotSet);
|
return Keys.GetString(Keys.ServiceProviderNotSet);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string ServiceNotFound
|
public static string ServiceNotFound
|
||||||
{
|
{
|
||||||
@@ -107,7 +107,7 @@ namespace Microsoft.SqlTools.Hosting
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.ServiceNotFound);
|
return Keys.GetString(Keys.ServiceNotFound);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string ServiceNotOfExpectedType
|
public static string ServiceNotOfExpectedType
|
||||||
{
|
{
|
||||||
@@ -115,7 +115,7 @@ namespace Microsoft.SqlTools.Hosting
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.ServiceNotOfExpectedType);
|
return Keys.GetString(Keys.ServiceNotOfExpectedType);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string HostingUnexpectedEndOfStream
|
public static string HostingUnexpectedEndOfStream
|
||||||
{
|
{
|
||||||
@@ -123,7 +123,7 @@ namespace Microsoft.SqlTools.Hosting
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.HostingUnexpectedEndOfStream);
|
return Keys.GetString(Keys.HostingUnexpectedEndOfStream);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string HostingHeaderMissingColon
|
public static string HostingHeaderMissingColon
|
||||||
{
|
{
|
||||||
@@ -131,7 +131,7 @@ namespace Microsoft.SqlTools.Hosting
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.HostingHeaderMissingColon);
|
return Keys.GetString(Keys.HostingHeaderMissingColon);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string HostingHeaderMissingContentLengthHeader
|
public static string HostingHeaderMissingContentLengthHeader
|
||||||
{
|
{
|
||||||
@@ -139,7 +139,7 @@ namespace Microsoft.SqlTools.Hosting
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.HostingHeaderMissingContentLengthHeader);
|
return Keys.GetString(Keys.HostingHeaderMissingContentLengthHeader);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string HostingHeaderMissingContentLengthValue
|
public static string HostingHeaderMissingContentLengthValue
|
||||||
{
|
{
|
||||||
@@ -147,7 +147,7 @@ namespace Microsoft.SqlTools.Hosting
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.HostingHeaderMissingContentLengthValue);
|
return Keys.GetString(Keys.HostingHeaderMissingContentLengthValue);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
public class Keys
|
public class Keys
|
||||||
@@ -155,52 +155,52 @@ namespace Microsoft.SqlTools.Hosting
|
|||||||
static ResourceManager resourceManager = new ResourceManager("Microsoft.SqlTools.Hosting.Localization.SR", typeof(SR).GetTypeInfo().Assembly);
|
static ResourceManager resourceManager = new ResourceManager("Microsoft.SqlTools.Hosting.Localization.SR", typeof(SR).GetTypeInfo().Assembly);
|
||||||
|
|
||||||
static CultureInfo _culture = null;
|
static CultureInfo _culture = null;
|
||||||
|
|
||||||
|
|
||||||
public const string CredentialsServiceInvalidCriticalHandle = "CredentialsServiceInvalidCriticalHandle";
|
public const string CredentialsServiceInvalidCriticalHandle = "CredentialsServiceInvalidCriticalHandle";
|
||||||
|
|
||||||
|
|
||||||
public const string CredentialsServicePasswordLengthExceeded = "CredentialsServicePasswordLengthExceeded";
|
public const string CredentialsServicePasswordLengthExceeded = "CredentialsServicePasswordLengthExceeded";
|
||||||
|
|
||||||
|
|
||||||
public const string CredentialsServiceTargetForDelete = "CredentialsServiceTargetForDelete";
|
public const string CredentialsServiceTargetForDelete = "CredentialsServiceTargetForDelete";
|
||||||
|
|
||||||
|
|
||||||
public const string CredentialsServiceTargetForLookup = "CredentialsServiceTargetForLookup";
|
public const string CredentialsServiceTargetForLookup = "CredentialsServiceTargetForLookup";
|
||||||
|
|
||||||
|
|
||||||
public const string CredentialServiceWin32CredentialDisposed = "CredentialServiceWin32CredentialDisposed";
|
public const string CredentialServiceWin32CredentialDisposed = "CredentialServiceWin32CredentialDisposed";
|
||||||
|
|
||||||
|
|
||||||
public const string ServiceAlreadyRegistered = "ServiceAlreadyRegistered";
|
public const string ServiceAlreadyRegistered = "ServiceAlreadyRegistered";
|
||||||
|
|
||||||
|
|
||||||
public const string MultipleServicesFound = "MultipleServicesFound";
|
public const string MultipleServicesFound = "MultipleServicesFound";
|
||||||
|
|
||||||
|
|
||||||
public const string IncompatibleServiceForExtensionLoader = "IncompatibleServiceForExtensionLoader";
|
public const string IncompatibleServiceForExtensionLoader = "IncompatibleServiceForExtensionLoader";
|
||||||
|
|
||||||
|
|
||||||
public const string ServiceProviderNotSet = "ServiceProviderNotSet";
|
public const string ServiceProviderNotSet = "ServiceProviderNotSet";
|
||||||
|
|
||||||
|
|
||||||
public const string ServiceNotFound = "ServiceNotFound";
|
public const string ServiceNotFound = "ServiceNotFound";
|
||||||
|
|
||||||
|
|
||||||
public const string ServiceNotOfExpectedType = "ServiceNotOfExpectedType";
|
public const string ServiceNotOfExpectedType = "ServiceNotOfExpectedType";
|
||||||
|
|
||||||
|
|
||||||
public const string HostingUnexpectedEndOfStream = "HostingUnexpectedEndOfStream";
|
public const string HostingUnexpectedEndOfStream = "HostingUnexpectedEndOfStream";
|
||||||
|
|
||||||
|
|
||||||
public const string HostingHeaderMissingColon = "HostingHeaderMissingColon";
|
public const string HostingHeaderMissingColon = "HostingHeaderMissingColon";
|
||||||
|
|
||||||
|
|
||||||
public const string HostingHeaderMissingContentLengthHeader = "HostingHeaderMissingContentLengthHeader";
|
public const string HostingHeaderMissingContentLengthHeader = "HostingHeaderMissingContentLengthHeader";
|
||||||
|
|
||||||
|
|
||||||
public const string HostingHeaderMissingContentLengthValue = "HostingHeaderMissingContentLengthValue";
|
public const string HostingHeaderMissingContentLengthValue = "HostingHeaderMissingContentLengthValue";
|
||||||
|
|
||||||
|
|
||||||
private Keys()
|
private Keys()
|
||||||
{ }
|
{ }
|
||||||
@@ -221,7 +221,7 @@ namespace Microsoft.SqlTools.Hosting
|
|||||||
{
|
{
|
||||||
return resourceManager.GetString(key, _culture);
|
return resourceManager.GetString(key, _culture);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -120,61 +120,61 @@
|
|||||||
<data name="CredentialsServiceInvalidCriticalHandle" xml:space="preserve">
|
<data name="CredentialsServiceInvalidCriticalHandle" xml:space="preserve">
|
||||||
<value>Invalid CriticalHandle!</value>
|
<value>Invalid CriticalHandle!</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="CredentialsServicePasswordLengthExceeded" xml:space="preserve">
|
<data name="CredentialsServicePasswordLengthExceeded" xml:space="preserve">
|
||||||
<value>The password has exceeded 512 bytes</value>
|
<value>The password has exceeded 512 bytes</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="CredentialsServiceTargetForDelete" xml:space="preserve">
|
<data name="CredentialsServiceTargetForDelete" xml:space="preserve">
|
||||||
<value>Target must be specified to delete a credential</value>
|
<value>Target must be specified to delete a credential</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="CredentialsServiceTargetForLookup" xml:space="preserve">
|
<data name="CredentialsServiceTargetForLookup" xml:space="preserve">
|
||||||
<value>Target must be specified to check existance of a credential</value>
|
<value>Target must be specified to check existance of a credential</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="CredentialServiceWin32CredentialDisposed" xml:space="preserve">
|
<data name="CredentialServiceWin32CredentialDisposed" xml:space="preserve">
|
||||||
<value>Win32Credential object is already disposed</value>
|
<value>Win32Credential object is already disposed</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ServiceAlreadyRegistered" xml:space="preserve">
|
<data name="ServiceAlreadyRegistered" xml:space="preserve">
|
||||||
<value>Cannot register service for type {0}, one or more services already registered</value>
|
<value>Cannot register service for type {0}, one or more services already registered</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="MultipleServicesFound" xml:space="preserve">
|
<data name="MultipleServicesFound" xml:space="preserve">
|
||||||
<value>Multiple services found for type {0}, expected only 1</value>
|
<value>Multiple services found for type {0}, expected only 1</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="IncompatibleServiceForExtensionLoader" xml:space="preserve">
|
<data name="IncompatibleServiceForExtensionLoader" xml:space="preserve">
|
||||||
<value>Service of type {0} cannot be created by ExtensionLoader<{1}></value>
|
<value>Service of type {0} cannot be created by ExtensionLoader<{1}></value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ServiceProviderNotSet" xml:space="preserve">
|
<data name="ServiceProviderNotSet" xml:space="preserve">
|
||||||
<value>SetServiceProvider() was not called to establish the required service provider</value>
|
<value>SetServiceProvider() was not called to establish the required service provider</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ServiceNotFound" xml:space="preserve">
|
<data name="ServiceNotFound" xml:space="preserve">
|
||||||
<value>Service {0} was not found in the service provider</value>
|
<value>Service {0} was not found in the service provider</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="ServiceNotOfExpectedType" xml:space="preserve">
|
<data name="ServiceNotOfExpectedType" xml:space="preserve">
|
||||||
<value>Service of Type {0} is not compatible with registered Type {1}</value>
|
<value>Service of Type {0} is not compatible with registered Type {1}</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="HostingUnexpectedEndOfStream" xml:space="preserve">
|
<data name="HostingUnexpectedEndOfStream" xml:space="preserve">
|
||||||
<value>MessageReader's input stream ended unexpectedly, terminating</value>
|
<value>MessageReader's input stream ended unexpectedly, terminating</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="HostingHeaderMissingColon" xml:space="preserve">
|
<data name="HostingHeaderMissingColon" xml:space="preserve">
|
||||||
<value>Message header must separate key and value using ':'</value>
|
<value>Message header must separate key and value using ':'</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="HostingHeaderMissingContentLengthHeader" xml:space="preserve">
|
<data name="HostingHeaderMissingContentLengthHeader" xml:space="preserve">
|
||||||
<value>Fatal error: Content-Length header must be provided</value>
|
<value>Fatal error: Content-Length header must be provided</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="HostingHeaderMissingContentLengthValue" xml:space="preserve">
|
<data name="HostingHeaderMissingContentLengthValue" xml:space="preserve">
|
||||||
<value>Fatal error: Content-Length value is not an integer</value>
|
<value>Fatal error: Content-Length value is not an integer</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ namespace Microsoft.SqlTools.ResourceProvider.Core
|
|||||||
Keys.Culture = value;
|
Keys.Culture = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public static string NoSubscriptionsFound
|
public static string NoSubscriptionsFound
|
||||||
{
|
{
|
||||||
@@ -35,7 +35,7 @@ namespace Microsoft.SqlTools.ResourceProvider.Core
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.NoSubscriptionsFound);
|
return Keys.GetString(Keys.NoSubscriptionsFound);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string AzureServerNotFound
|
public static string AzureServerNotFound
|
||||||
{
|
{
|
||||||
@@ -43,7 +43,7 @@ namespace Microsoft.SqlTools.ResourceProvider.Core
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.AzureServerNotFound);
|
return Keys.GetString(Keys.AzureServerNotFound);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string AzureSubscriptionFailedErrorMessage
|
public static string AzureSubscriptionFailedErrorMessage
|
||||||
{
|
{
|
||||||
@@ -51,7 +51,7 @@ namespace Microsoft.SqlTools.ResourceProvider.Core
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.AzureSubscriptionFailedErrorMessage);
|
return Keys.GetString(Keys.AzureSubscriptionFailedErrorMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string DatabaseDiscoveryFailedErrorMessage
|
public static string DatabaseDiscoveryFailedErrorMessage
|
||||||
{
|
{
|
||||||
@@ -59,7 +59,7 @@ namespace Microsoft.SqlTools.ResourceProvider.Core
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.DatabaseDiscoveryFailedErrorMessage);
|
return Keys.GetString(Keys.DatabaseDiscoveryFailedErrorMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string FirewallRuleAccessForbidden
|
public static string FirewallRuleAccessForbidden
|
||||||
{
|
{
|
||||||
@@ -67,7 +67,7 @@ namespace Microsoft.SqlTools.ResourceProvider.Core
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.FirewallRuleAccessForbidden);
|
return Keys.GetString(Keys.FirewallRuleAccessForbidden);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string FirewallRuleCreationFailed
|
public static string FirewallRuleCreationFailed
|
||||||
{
|
{
|
||||||
@@ -75,7 +75,7 @@ namespace Microsoft.SqlTools.ResourceProvider.Core
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.FirewallRuleCreationFailed);
|
return Keys.GetString(Keys.FirewallRuleCreationFailed);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string FirewallRuleCreationFailedWithError
|
public static string FirewallRuleCreationFailedWithError
|
||||||
{
|
{
|
||||||
@@ -83,7 +83,7 @@ namespace Microsoft.SqlTools.ResourceProvider.Core
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.FirewallRuleCreationFailedWithError);
|
return Keys.GetString(Keys.FirewallRuleCreationFailedWithError);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string InvalidIpAddress
|
public static string InvalidIpAddress
|
||||||
{
|
{
|
||||||
@@ -91,7 +91,7 @@ namespace Microsoft.SqlTools.ResourceProvider.Core
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.InvalidIpAddress);
|
return Keys.GetString(Keys.InvalidIpAddress);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string InvalidServerTypeErrorMessage
|
public static string InvalidServerTypeErrorMessage
|
||||||
{
|
{
|
||||||
@@ -99,7 +99,7 @@ namespace Microsoft.SqlTools.ResourceProvider.Core
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.InvalidServerTypeErrorMessage);
|
return Keys.GetString(Keys.InvalidServerTypeErrorMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string LoadingExportableFailedGeneralErrorMessage
|
public static string LoadingExportableFailedGeneralErrorMessage
|
||||||
{
|
{
|
||||||
@@ -107,7 +107,7 @@ namespace Microsoft.SqlTools.ResourceProvider.Core
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.LoadingExportableFailedGeneralErrorMessage);
|
return Keys.GetString(Keys.LoadingExportableFailedGeneralErrorMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string FirewallRuleUnsupportedConnectionType
|
public static string FirewallRuleUnsupportedConnectionType
|
||||||
{
|
{
|
||||||
@@ -115,7 +115,7 @@ namespace Microsoft.SqlTools.ResourceProvider.Core
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.FirewallRuleUnsupportedConnectionType);
|
return Keys.GetString(Keys.FirewallRuleUnsupportedConnectionType);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
public class Keys
|
public class Keys
|
||||||
@@ -123,40 +123,40 @@ namespace Microsoft.SqlTools.ResourceProvider.Core
|
|||||||
static ResourceManager resourceManager = new ResourceManager("Microsoft.SqlTools.ResourceProvider.Core.Localization.SR", typeof(SR).GetTypeInfo().Assembly);
|
static ResourceManager resourceManager = new ResourceManager("Microsoft.SqlTools.ResourceProvider.Core.Localization.SR", typeof(SR).GetTypeInfo().Assembly);
|
||||||
|
|
||||||
static CultureInfo _culture = null;
|
static CultureInfo _culture = null;
|
||||||
|
|
||||||
|
|
||||||
public const string NoSubscriptionsFound = "NoSubscriptionsFound";
|
public const string NoSubscriptionsFound = "NoSubscriptionsFound";
|
||||||
|
|
||||||
|
|
||||||
public const string AzureServerNotFound = "AzureServerNotFound";
|
public const string AzureServerNotFound = "AzureServerNotFound";
|
||||||
|
|
||||||
|
|
||||||
public const string AzureSubscriptionFailedErrorMessage = "AzureSubscriptionFailedErrorMessage";
|
public const string AzureSubscriptionFailedErrorMessage = "AzureSubscriptionFailedErrorMessage";
|
||||||
|
|
||||||
|
|
||||||
public const string DatabaseDiscoveryFailedErrorMessage = "DatabaseDiscoveryFailedErrorMessage";
|
public const string DatabaseDiscoveryFailedErrorMessage = "DatabaseDiscoveryFailedErrorMessage";
|
||||||
|
|
||||||
|
|
||||||
public const string FirewallRuleAccessForbidden = "FirewallRuleAccessForbidden";
|
public const string FirewallRuleAccessForbidden = "FirewallRuleAccessForbidden";
|
||||||
|
|
||||||
|
|
||||||
public const string FirewallRuleCreationFailed = "FirewallRuleCreationFailed";
|
public const string FirewallRuleCreationFailed = "FirewallRuleCreationFailed";
|
||||||
|
|
||||||
|
|
||||||
public const string FirewallRuleCreationFailedWithError = "FirewallRuleCreationFailedWithError";
|
public const string FirewallRuleCreationFailedWithError = "FirewallRuleCreationFailedWithError";
|
||||||
|
|
||||||
|
|
||||||
public const string InvalidIpAddress = "InvalidIpAddress";
|
public const string InvalidIpAddress = "InvalidIpAddress";
|
||||||
|
|
||||||
|
|
||||||
public const string InvalidServerTypeErrorMessage = "InvalidServerTypeErrorMessage";
|
public const string InvalidServerTypeErrorMessage = "InvalidServerTypeErrorMessage";
|
||||||
|
|
||||||
|
|
||||||
public const string LoadingExportableFailedGeneralErrorMessage = "LoadingExportableFailedGeneralErrorMessage";
|
public const string LoadingExportableFailedGeneralErrorMessage = "LoadingExportableFailedGeneralErrorMessage";
|
||||||
|
|
||||||
|
|
||||||
public const string FirewallRuleUnsupportedConnectionType = "FirewallRuleUnsupportedConnectionType";
|
public const string FirewallRuleUnsupportedConnectionType = "FirewallRuleUnsupportedConnectionType";
|
||||||
|
|
||||||
|
|
||||||
private Keys()
|
private Keys()
|
||||||
{ }
|
{ }
|
||||||
@@ -177,7 +177,7 @@ namespace Microsoft.SqlTools.ResourceProvider.Core
|
|||||||
{
|
{
|
||||||
return resourceManager.GetString(key, _culture);
|
return resourceManager.GetString(key, _culture);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -120,45 +120,45 @@
|
|||||||
<data name="NoSubscriptionsFound" xml:space="preserve">
|
<data name="NoSubscriptionsFound" xml:space="preserve">
|
||||||
<value>No subscriptions were found for the currently logged in user account.</value>
|
<value>No subscriptions were found for the currently logged in user account.</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="AzureServerNotFound" xml:space="preserve">
|
<data name="AzureServerNotFound" xml:space="preserve">
|
||||||
<value>The server you specified {0} does not exist in any subscription in {1}. Either you have signed in with an incorrect account or your server was removed from subscription(s) in this account. Please check your account and try again.</value>
|
<value>The server you specified {0} does not exist in any subscription in {1}. Either you have signed in with an incorrect account or your server was removed from subscription(s) in this account. Please check your account and try again.</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="AzureSubscriptionFailedErrorMessage" xml:space="preserve">
|
<data name="AzureSubscriptionFailedErrorMessage" xml:space="preserve">
|
||||||
<value>An error occurred while getting Azure subscriptions: {0}</value>
|
<value>An error occurred while getting Azure subscriptions: {0}</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="DatabaseDiscoveryFailedErrorMessage" xml:space="preserve">
|
<data name="DatabaseDiscoveryFailedErrorMessage" xml:space="preserve">
|
||||||
<value>An error occurred while getting databases from servers of type {0} from {1}</value>
|
<value>An error occurred while getting databases from servers of type {0} from {1}</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="FirewallRuleAccessForbidden" xml:space="preserve">
|
<data name="FirewallRuleAccessForbidden" xml:space="preserve">
|
||||||
<value>{0} does not have permission to change the server firewall rule. Try again with a different account that is an Owner or Contributor of the Azure subscription or the server.</value>
|
<value>{0} does not have permission to change the server firewall rule. Try again with a different account that is an Owner or Contributor of the Azure subscription or the server.</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="FirewallRuleCreationFailed" xml:space="preserve">
|
<data name="FirewallRuleCreationFailed" xml:space="preserve">
|
||||||
<value>An error occurred while creating a new firewall rule.</value>
|
<value>An error occurred while creating a new firewall rule.</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="FirewallRuleCreationFailedWithError" xml:space="preserve">
|
<data name="FirewallRuleCreationFailedWithError" xml:space="preserve">
|
||||||
<value>An error occurred while creating a new firewall rule: '{0}'</value>
|
<value>An error occurred while creating a new firewall rule: '{0}'</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="InvalidIpAddress" xml:space="preserve">
|
<data name="InvalidIpAddress" xml:space="preserve">
|
||||||
<value>Invalid IP address</value>
|
<value>Invalid IP address</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="InvalidServerTypeErrorMessage" xml:space="preserve">
|
<data name="InvalidServerTypeErrorMessage" xml:space="preserve">
|
||||||
<value>Server Type is invalid.</value>
|
<value>Server Type is invalid.</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="LoadingExportableFailedGeneralErrorMessage" xml:space="preserve">
|
<data name="LoadingExportableFailedGeneralErrorMessage" xml:space="preserve">
|
||||||
<value>A required dll cannot be loaded. Please repair your application.</value>
|
<value>A required dll cannot be loaded. Please repair your application.</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="FirewallRuleUnsupportedConnectionType" xml:space="preserve">
|
<data name="FirewallRuleUnsupportedConnectionType" xml:space="preserve">
|
||||||
<value>Cannot open a firewall rule for the specified connection type</value>
|
<value>Cannot open a firewall rule for the specified connection type</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ namespace Microsoft.SqlTools.ResourceProvider.DefaultImpl
|
|||||||
Keys.Culture = value;
|
Keys.Culture = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public static string FailedToGetAzureDatabasesErrorMessage
|
public static string FailedToGetAzureDatabasesErrorMessage
|
||||||
{
|
{
|
||||||
@@ -35,7 +35,7 @@ namespace Microsoft.SqlTools.ResourceProvider.DefaultImpl
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.FailedToGetAzureDatabasesErrorMessage);
|
return Keys.GetString(Keys.FailedToGetAzureDatabasesErrorMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string FailedToGetAzureSubscriptionsErrorMessage
|
public static string FailedToGetAzureSubscriptionsErrorMessage
|
||||||
{
|
{
|
||||||
@@ -43,7 +43,7 @@ namespace Microsoft.SqlTools.ResourceProvider.DefaultImpl
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.FailedToGetAzureSubscriptionsErrorMessage);
|
return Keys.GetString(Keys.FailedToGetAzureSubscriptionsErrorMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string FailedToGetAzureResourceGroupsErrorMessage
|
public static string FailedToGetAzureResourceGroupsErrorMessage
|
||||||
{
|
{
|
||||||
@@ -51,7 +51,7 @@ namespace Microsoft.SqlTools.ResourceProvider.DefaultImpl
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.FailedToGetAzureResourceGroupsErrorMessage);
|
return Keys.GetString(Keys.FailedToGetAzureResourceGroupsErrorMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string FailedToGetAzureSqlServersErrorMessage
|
public static string FailedToGetAzureSqlServersErrorMessage
|
||||||
{
|
{
|
||||||
@@ -59,7 +59,7 @@ namespace Microsoft.SqlTools.ResourceProvider.DefaultImpl
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.FailedToGetAzureSqlServersErrorMessage);
|
return Keys.GetString(Keys.FailedToGetAzureSqlServersErrorMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string FailedToGetAzureSqlServersWithError
|
public static string FailedToGetAzureSqlServersWithError
|
||||||
{
|
{
|
||||||
@@ -67,7 +67,7 @@ namespace Microsoft.SqlTools.ResourceProvider.DefaultImpl
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.FailedToGetAzureSqlServersWithError);
|
return Keys.GetString(Keys.FailedToGetAzureSqlServersWithError);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string FirewallRuleCreationFailed
|
public static string FirewallRuleCreationFailed
|
||||||
{
|
{
|
||||||
@@ -75,7 +75,7 @@ namespace Microsoft.SqlTools.ResourceProvider.DefaultImpl
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.FirewallRuleCreationFailed);
|
return Keys.GetString(Keys.FirewallRuleCreationFailed);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string FirewallRuleCreationFailedWithError
|
public static string FirewallRuleCreationFailedWithError
|
||||||
{
|
{
|
||||||
@@ -83,7 +83,7 @@ namespace Microsoft.SqlTools.ResourceProvider.DefaultImpl
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.FirewallRuleCreationFailedWithError);
|
return Keys.GetString(Keys.FirewallRuleCreationFailedWithError);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string UnsupportedAuthType
|
public static string UnsupportedAuthType
|
||||||
{
|
{
|
||||||
@@ -91,7 +91,7 @@ namespace Microsoft.SqlTools.ResourceProvider.DefaultImpl
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.UnsupportedAuthType);
|
return Keys.GetString(Keys.UnsupportedAuthType);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string UserNotFoundError
|
public static string UserNotFoundError
|
||||||
{
|
{
|
||||||
@@ -99,7 +99,7 @@ namespace Microsoft.SqlTools.ResourceProvider.DefaultImpl
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.UserNotFoundError);
|
return Keys.GetString(Keys.UserNotFoundError);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string UserNeedsAuthenticationError
|
public static string UserNeedsAuthenticationError
|
||||||
{
|
{
|
||||||
@@ -107,7 +107,7 @@ namespace Microsoft.SqlTools.ResourceProvider.DefaultImpl
|
|||||||
{
|
{
|
||||||
return Keys.GetString(Keys.UserNeedsAuthenticationError);
|
return Keys.GetString(Keys.UserNeedsAuthenticationError);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
public class Keys
|
public class Keys
|
||||||
@@ -115,37 +115,37 @@ namespace Microsoft.SqlTools.ResourceProvider.DefaultImpl
|
|||||||
static ResourceManager resourceManager = new ResourceManager("Microsoft.SqlTools.ResourceProvider.DefaultImpl.Localization.SR", typeof(SR).GetTypeInfo().Assembly);
|
static ResourceManager resourceManager = new ResourceManager("Microsoft.SqlTools.ResourceProvider.DefaultImpl.Localization.SR", typeof(SR).GetTypeInfo().Assembly);
|
||||||
|
|
||||||
static CultureInfo _culture = null;
|
static CultureInfo _culture = null;
|
||||||
|
|
||||||
|
|
||||||
public const string FailedToGetAzureDatabasesErrorMessage = "FailedToGetAzureDatabasesErrorMessage";
|
public const string FailedToGetAzureDatabasesErrorMessage = "FailedToGetAzureDatabasesErrorMessage";
|
||||||
|
|
||||||
|
|
||||||
public const string FailedToGetAzureSubscriptionsErrorMessage = "FailedToGetAzureSubscriptionsErrorMessage";
|
public const string FailedToGetAzureSubscriptionsErrorMessage = "FailedToGetAzureSubscriptionsErrorMessage";
|
||||||
|
|
||||||
|
|
||||||
public const string FailedToGetAzureResourceGroupsErrorMessage = "FailedToGetAzureResourceGroupsErrorMessage";
|
public const string FailedToGetAzureResourceGroupsErrorMessage = "FailedToGetAzureResourceGroupsErrorMessage";
|
||||||
|
|
||||||
|
|
||||||
public const string FailedToGetAzureSqlServersErrorMessage = "FailedToGetAzureSqlServersErrorMessage";
|
public const string FailedToGetAzureSqlServersErrorMessage = "FailedToGetAzureSqlServersErrorMessage";
|
||||||
|
|
||||||
|
|
||||||
public const string FailedToGetAzureSqlServersWithError = "FailedToGetAzureSqlServersWithError";
|
public const string FailedToGetAzureSqlServersWithError = "FailedToGetAzureSqlServersWithError";
|
||||||
|
|
||||||
|
|
||||||
public const string FirewallRuleCreationFailed = "FirewallRuleCreationFailed";
|
public const string FirewallRuleCreationFailed = "FirewallRuleCreationFailed";
|
||||||
|
|
||||||
|
|
||||||
public const string FirewallRuleCreationFailedWithError = "FirewallRuleCreationFailedWithError";
|
public const string FirewallRuleCreationFailedWithError = "FirewallRuleCreationFailedWithError";
|
||||||
|
|
||||||
|
|
||||||
public const string UnsupportedAuthType = "UnsupportedAuthType";
|
public const string UnsupportedAuthType = "UnsupportedAuthType";
|
||||||
|
|
||||||
|
|
||||||
public const string UserNotFoundError = "UserNotFoundError";
|
public const string UserNotFoundError = "UserNotFoundError";
|
||||||
|
|
||||||
|
|
||||||
public const string UserNeedsAuthenticationError = "UserNeedsAuthenticationError";
|
public const string UserNeedsAuthenticationError = "UserNeedsAuthenticationError";
|
||||||
|
|
||||||
|
|
||||||
private Keys()
|
private Keys()
|
||||||
{ }
|
{ }
|
||||||
@@ -166,7 +166,7 @@ namespace Microsoft.SqlTools.ResourceProvider.DefaultImpl
|
|||||||
{
|
{
|
||||||
return resourceManager.GetString(key, _culture);
|
return resourceManager.GetString(key, _culture);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -120,41 +120,41 @@
|
|||||||
<data name="FailedToGetAzureDatabasesErrorMessage" xml:space="preserve">
|
<data name="FailedToGetAzureDatabasesErrorMessage" xml:space="preserve">
|
||||||
<value>An error occurred while getting Azure databases</value>
|
<value>An error occurred while getting Azure databases</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="FailedToGetAzureSubscriptionsErrorMessage" xml:space="preserve">
|
<data name="FailedToGetAzureSubscriptionsErrorMessage" xml:space="preserve">
|
||||||
<value>An error occurred while getting Azure subscriptions: {0}</value>
|
<value>An error occurred while getting Azure subscriptions: {0}</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="FailedToGetAzureResourceGroupsErrorMessage" xml:space="preserve">
|
<data name="FailedToGetAzureResourceGroupsErrorMessage" xml:space="preserve">
|
||||||
<value>An error occurred while getting Azure resource groups: {0}</value>
|
<value>An error occurred while getting Azure resource groups: {0}</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="FailedToGetAzureSqlServersErrorMessage" xml:space="preserve">
|
<data name="FailedToGetAzureSqlServersErrorMessage" xml:space="preserve">
|
||||||
<value>An error occurred while getting Azure Sql Servers</value>
|
<value>An error occurred while getting Azure Sql Servers</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="FailedToGetAzureSqlServersWithError" xml:space="preserve">
|
<data name="FailedToGetAzureSqlServersWithError" xml:space="preserve">
|
||||||
<value>An error occurred while getting Azure Sql Servers: '{0}'</value>
|
<value>An error occurred while getting Azure Sql Servers: '{0}'</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="FirewallRuleCreationFailed" xml:space="preserve">
|
<data name="FirewallRuleCreationFailed" xml:space="preserve">
|
||||||
<value>An error occurred while creating a new firewall rule.</value>
|
<value>An error occurred while creating a new firewall rule.</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="FirewallRuleCreationFailedWithError" xml:space="preserve">
|
<data name="FirewallRuleCreationFailedWithError" xml:space="preserve">
|
||||||
<value>An error occurred while creating a new firewall rule: '{0}'</value>
|
<value>An error occurred while creating a new firewall rule: '{0}'</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="UnsupportedAuthType" xml:space="preserve">
|
<data name="UnsupportedAuthType" xml:space="preserve">
|
||||||
<value>Unsupported account type '{0}' for this provider</value>
|
<value>Unsupported account type '{0}' for this provider</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="UserNotFoundError" xml:space="preserve">
|
<data name="UserNotFoundError" xml:space="preserve">
|
||||||
<value>No user was found, cannot execute the operation</value>
|
<value>No user was found, cannot execute the operation</value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="UserNeedsAuthenticationError" xml:space="preserve">
|
<data name="UserNeedsAuthenticationError" xml:space="preserve">
|
||||||
<value>The current user must be reauthenticated before executing this operation </value>
|
<value>The current user must be reauthenticated before executing this operation </value>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ namespace Microsoft.SqlTools.ResourceProvider
|
|||||||
Keys.Culture = value;
|
Keys.Culture = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
public class Keys
|
public class Keys
|
||||||
@@ -35,7 +35,7 @@ namespace Microsoft.SqlTools.ResourceProvider
|
|||||||
static ResourceManager resourceManager = new ResourceManager("Microsoft.SqlTools.ResourceProvider.Localization.SR", typeof(SR).GetTypeInfo().Assembly);
|
static ResourceManager resourceManager = new ResourceManager("Microsoft.SqlTools.ResourceProvider.Localization.SR", typeof(SR).GetTypeInfo().Assembly);
|
||||||
|
|
||||||
static CultureInfo _culture = null;
|
static CultureInfo _culture = null;
|
||||||
|
|
||||||
|
|
||||||
private Keys()
|
private Keys()
|
||||||
{ }
|
{ }
|
||||||
@@ -56,7 +56,7 @@ namespace Microsoft.SqlTools.ResourceProvider
|
|||||||
{
|
{
|
||||||
return resourceManager.GetString(key, _culture);
|
return resourceManager.GetString(key, _culture);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -117,4 +117,4 @@
|
|||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
</root>
|
</root>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||||
<PackageId>SqlToolsResourceProviderService</PackageId>
|
<PackageId>SqlToolsResourceProviderService</PackageId>
|
||||||
<AssemblyName>SqlToolsResourceProviderService</AssemblyName>
|
<AssemblyName>SqlToolsResourceProviderService</AssemblyName>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||||
<PackageId>SqlSerializationService</PackageId>
|
<PackageId>SqlSerializationService</PackageId>
|
||||||
<AssemblyName>SqlSerializationService</AssemblyName>
|
<AssemblyName>SqlSerializationService</AssemblyName>
|
||||||
<Company>Microsoft</Company>
|
<Company>Microsoft</Company>
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||||
<AssemblyName>MicrosoftSqlToolsServiceLayer</AssemblyName>
|
<AssemblyName>MicrosoftSqlToolsServiceLayer</AssemblyName>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<EnableDefaultItems>false</EnableDefaultItems>
|
<EnableDefaultItems>false</EnableDefaultItems>
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ dotnet restore %REPOROOT%\test\Microsoft.SqlTools.ServiceLayer.TestDriver.Tests\
|
|||||||
dotnet build %REPOROOT%\test\Microsoft.SqlTools.ServiceLayer.TestDriver.Tests\Microsoft.SqlTools.ServiceLayer.TestDriver.Tests.csproj %DOTNETCONFIG%
|
dotnet build %REPOROOT%\test\Microsoft.SqlTools.ServiceLayer.TestDriver.Tests\Microsoft.SqlTools.ServiceLayer.TestDriver.Tests.csproj %DOTNETCONFIG%
|
||||||
|
|
||||||
SET TEST_SERVER=localhost
|
SET TEST_SERVER=localhost
|
||||||
SET SQLTOOLSSERVICE_EXE=%REPOROOT%\src\Microsoft.SqlTools.ServiceLayer\bin\Integration\netcoreapp2.0\win7-x64\MicrosoftSqlToolsServiceLayer.exe
|
SET SQLTOOLSSERVICE_EXE=%REPOROOT%\src\Microsoft.SqlTools.ServiceLayer\bin\Integration\netcoreapp2.1\win7-x64\MicrosoftSqlToolsServiceLayer.exe
|
||||||
SET SERVICECODECOVERAGE=True
|
SET SERVICECODECOVERAGE=True
|
||||||
SET CODECOVERAGETOOL="%WORKINGDIR%packages\OpenCover.4.6.684\tools\OpenCover.Console.exe"
|
SET CODECOVERAGETOOL="%WORKINGDIR%packages\OpenCover.4.6.684\tools\OpenCover.Console.exe"
|
||||||
SET CODECOVERAGEOUTPUT=coverage.xml
|
SET CODECOVERAGEOUTPUT=coverage.xml
|
||||||
@@ -61,11 +61,11 @@ REM dotnet.exe test %REPOROOT%\test\Microsoft.SqlTools.ServiceLayer.TestDriver.T
|
|||||||
|
|
||||||
SET SERVICECODECOVERAGE=FALSE
|
SET SERVICECODECOVERAGE=FALSE
|
||||||
|
|
||||||
%CODECOVERAGETOOL% -mergeoutput -register:user -target:dotnet.exe -targetargs:"test %REPOROOT%\test\Microsoft.SqlTools.ServiceLayer.TestDriver.Tests\Microsoft.SqlTools.ServiceLayer.TestDriver.Tests.csproj %DOTNETCONFIG%" -oldstyle -filter:"+[Microsoft.SqlTools.*]* +[MicrosoftSqlToolsServiceLayer*]* +[MicrosoftSqlToolsCredentials*]* -[xunit*]* -[Microsoft.SqlTools.ServiceLayer.Test*]* -[Microsoft.SqlTools.ServiceLayer.*Test*]*" -output:coverage.xml -searchdirs:%REPOROOT%\test\Microsoft.SqlTools.ServiceLayer.TestDriver.Tests\bin\Debug\netcoreapp2.0
|
%CODECOVERAGETOOL% -mergeoutput -register:user -target:dotnet.exe -targetargs:"test %REPOROOT%\test\Microsoft.SqlTools.ServiceLayer.TestDriver.Tests\Microsoft.SqlTools.ServiceLayer.TestDriver.Tests.csproj %DOTNETCONFIG%" -oldstyle -filter:"+[Microsoft.SqlTools.*]* +[MicrosoftSqlToolsServiceLayer*]* +[MicrosoftSqlToolsCredentials*]* -[xunit*]* -[Microsoft.SqlTools.ServiceLayer.Test*]* -[Microsoft.SqlTools.ServiceLayer.*Test*]*" -output:coverage.xml -searchdirs:%REPOROOT%\test\Microsoft.SqlTools.ServiceLayer.TestDriver.Tests\bin\Debug\netcoreapp2.1
|
||||||
|
|
||||||
%CODECOVERAGETOOL% -mergeoutput -register:user -target:dotnet.exe -targetargs:"test %REPOROOT%\test\Microsoft.SqlTools.ServiceLayer.UnitTests\Microsoft.SqlTools.ServiceLayer.UnitTests.csproj %DOTNETCONFIG%" -oldstyle -filter:"+[Microsoft.SqlTools.*]* +[MicrosoftSqlToolsServiceLayer*]* +[MicrosoftSqlToolsCredentials*]* -[xunit*]* -[Microsoft.SqlTools.ServiceLayer.*Test*]* -[Microsoft.SqlTools.ServiceLayer.Test*]*" -output:coverage.xml -searchdirs:%REPOROOT%\test\Microsoft.SqlTools.ServiceLayer.UnitTests\bin\Debug\netcoreapp2.0
|
%CODECOVERAGETOOL% -mergeoutput -register:user -target:dotnet.exe -targetargs:"test %REPOROOT%\test\Microsoft.SqlTools.ServiceLayer.UnitTests\Microsoft.SqlTools.ServiceLayer.UnitTests.csproj %DOTNETCONFIG%" -oldstyle -filter:"+[Microsoft.SqlTools.*]* +[MicrosoftSqlToolsServiceLayer*]* +[MicrosoftSqlToolsCredentials*]* -[xunit*]* -[Microsoft.SqlTools.ServiceLayer.*Test*]* -[Microsoft.SqlTools.ServiceLayer.Test*]*" -output:coverage.xml -searchdirs:%REPOROOT%\test\Microsoft.SqlTools.ServiceLayer.UnitTests\bin\Debug\netcoreapp2.1
|
||||||
|
|
||||||
%CODECOVERAGETOOL% -mergeoutput -register:user -target:dotnet.exe -targetargs:"test %REPOROOT%\test\Microsoft.SqlTools.ServiceLayer.IntegrationTests\Microsoft.SqlTools.ServiceLayer.IntegrationTests.csproj %DOTNETCONFIG%" -oldstyle -filter:"+[Microsoft.SqlTools.*]* +[MicrosoftSqlToolsServiceLayer*]* +[MicrosoftSqlToolsCredentials*]* [Microsoft.SqlTools.*]* -[xunit*]* -[Microsoft.SqlTools.ServiceLayer.Test*]* -[Microsoft.SqlTools.ServiceLayer.*Test*]*" -output:coverage.xml -searchdirs:%REPOROOT%\test\Microsoft.SqlTools.ServiceLayer.IntegrationTests\bin\Debug\netcoreapp2.0
|
%CODECOVERAGETOOL% -mergeoutput -register:user -target:dotnet.exe -targetargs:"test %REPOROOT%\test\Microsoft.SqlTools.ServiceLayer.IntegrationTests\Microsoft.SqlTools.ServiceLayer.IntegrationTests.csproj %DOTNETCONFIG%" -oldstyle -filter:"+[Microsoft.SqlTools.*]* +[MicrosoftSqlToolsServiceLayer*]* +[MicrosoftSqlToolsCredentials*]* [Microsoft.SqlTools.*]* -[xunit*]* -[Microsoft.SqlTools.ServiceLayer.Test*]* -[Microsoft.SqlTools.ServiceLayer.*Test*]*" -output:coverage.xml -searchdirs:%REPOROOT%\test\Microsoft.SqlTools.ServiceLayer.IntegrationTests\bin\Debug\netcoreapp2.1
|
||||||
|
|
||||||
REM Generate the report
|
REM Generate the report
|
||||||
"%WORKINGDIR%packages\OpenCoverToCoberturaConverter.0.2.4.0\tools\OpenCoverToCoberturaConverter.exe" -input:coverage.xml -output:outputCobertura.xml -sources:%REPOROOT%\src\Microsoft.SqlTools.ServiceLayer
|
"%WORKINGDIR%packages\OpenCoverToCoberturaConverter.0.2.4.0\tools\OpenCoverToCoberturaConverter.exe" -input:coverage.xml -output:outputCobertura.xml -sources:%REPOROOT%\src\Microsoft.SqlTools.ServiceLayer
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||||
<DebugType>portable</DebugType>
|
<DebugType>portable</DebugType>
|
||||||
<AssemblyName>Microsoft.SqlTools.ServiceLayer.IntegrationTests</AssemblyName>
|
<AssemblyName>Microsoft.SqlTools.ServiceLayer.IntegrationTests</AssemblyName>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||||
<DebugType>portable</DebugType>
|
<DebugType>portable</DebugType>
|
||||||
<AssemblyName>Microsoft.SqlTools.ServiceLayer.PerfTests</AssemblyName>
|
<AssemblyName>Microsoft.SqlTools.ServiceLayer.PerfTests</AssemblyName>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||||
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
|
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
|
||||||
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
|
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
|
||||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||||
<DebugType>portable</DebugType>
|
<DebugType>portable</DebugType>
|
||||||
<AssemblyName>Microsoft.SqlTools.ServiceLayer.TestDriver.Tests</AssemblyName>
|
<AssemblyName>Microsoft.SqlTools.ServiceLayer.TestDriver.Tests</AssemblyName>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ namespace Microsoft.SqlTools.ServiceLayer.TestDriver.Driver
|
|||||||
{
|
{
|
||||||
// Include a fallback value to for running tests within visual studio
|
// Include a fallback value to for running tests within visual studio
|
||||||
serviceHostExecutable =
|
serviceHostExecutable =
|
||||||
@"..\..\..\..\..\src\Microsoft.SqlTools.ServiceLayer\bin\Debug\netcoreapp2.0\win7-x64\MicrosoftSqlToolsServiceLayer.exe";
|
@"..\..\..\..\..\src\Microsoft.SqlTools.ServiceLayer\bin\Debug\netcoreapp2.1\win7-x64\MicrosoftSqlToolsServiceLayer.exe";
|
||||||
}
|
}
|
||||||
|
|
||||||
serviceHostExecutable = Path.GetFullPath(serviceHostExecutable);
|
serviceHostExecutable = Path.GetFullPath(serviceHostExecutable);
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||||
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
|
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
|
||||||
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
|
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
|
||||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||||
<AssemblyName>Microsoft.SqlTools.ServiceLayer.TestEnvConfig</AssemblyName>
|
<AssemblyName>Microsoft.SqlTools.ServiceLayer.TestEnvConfig</AssemblyName>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup Label="Configuration">
|
<PropertyGroup Label="Configuration">
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||||
<DefineConstants>$(DefineConstants);NETCOREAPP1_0</DefineConstants>
|
<DefineConstants>$(DefineConstants);NETCOREAPP1_0</DefineConstants>
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
@@ -34,7 +34,7 @@
|
|||||||
<ProjectReference Include="../../test/Microsoft.SqlTools.ServiceLayer.Test.Common/Microsoft.SqlTools.ServiceLayer.Test.Common.csproj" />
|
<ProjectReference Include="../../test/Microsoft.SqlTools.ServiceLayer.Test.Common/Microsoft.SqlTools.ServiceLayer.Test.Common.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="obj\Debug\netcoreapp2.0\" />
|
<Folder Include="obj\Debug\netcoreapp2.1\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
|
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
|
||||||
|
|||||||
Reference in New Issue
Block a user