mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-13 17:23:02 -05:00
* Use netstandard for coreservices DLL - This is possible thanks to recent updates that target SMO bits using netstandard * Fix localization failure during dotnet pack - Namespace changes on SRGen, so updated references to accept the name change
17 lines
448 B
C#
17 lines
448 B
C#
//
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
//
|
|
|
|
using System;
|
|
using Microsoft.SqlTools.Hosting.v2;
|
|
|
|
namespace Microsoft.SqlTools.Hosting.Utility
|
|
{
|
|
public class ServiceProviderNotSetException : InvalidOperationException {
|
|
|
|
public ServiceProviderNotSetException()
|
|
: base(SR.ServiceProviderNotSet) {
|
|
}
|
|
}
|
|
} |