mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-16 10:58:30 -05:00
Use netstandard for coreservices DLL (#676)
* 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
This commit is contained in:
@@ -248,7 +248,7 @@ Task("DotnetPack")
|
||||
{
|
||||
StandardOutputListing = runLog
|
||||
})
|
||||
.ExceptionOnError($"Packaging test {project} failed.");
|
||||
.ExceptionOnError($"Packaging {project} failed.");
|
||||
System.IO.File.WriteAllLines(System.IO.Path.Combine(logFolder, $"{project}-pack.log"), runLog.ToArray());
|
||||
}
|
||||
});
|
||||
@@ -501,8 +501,8 @@ Task("All")
|
||||
.IsDependentOn("Cleanup")
|
||||
.IsDependentOn("Restore")
|
||||
.IsDependentOn("TestAll")
|
||||
.IsDependentOn("AllPublish")
|
||||
.IsDependentOn("DotnetPack")
|
||||
.IsDependentOn("AllPublish")
|
||||
//.IsDependentOn("TestPublished")
|
||||
.Does(() =>
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user