mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 01:25:40 -05:00
* scripting working with race conditions * new service works with no race conditions * use new scripting service and commented out tests * refactored peek definition to use mssql-scripter * fixed peek definition tests * removed auto gen comment * fixed peek definition highlighting bug * made scripting async and fixed event handlers * fixed tests (without cancel and plan notifs) * removed dead code * added nuget package * CR comments + select script service implementation * minor fixes and added test * CR comments and script select * added unit tests * code review comments and cleanup
33 lines
1.5 KiB
XML
33 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
<EnableDefaultItems>false</EnableDefaultItems>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
|
|
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<DefineConstants>$(DefineConstants);NETCOREAPP1_0</DefineConstants>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<PreserveCompilationContext>true</PreserveCompilationContext>
|
|
<DebugType>portable</DebugType>
|
|
<RuntimeIdentifiers>win7-x64;win7-x86;ubuntu.14.04-x64;ubuntu.16.04-x64;centos.7-x64;rhel.7.2-x64;debian.8-x64;fedora.23-x64;opensuse.13.2-x64;osx.10.11-x64</RuntimeIdentifiers>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Data.SqlClient" Version="4.4.0" />
|
|
<PackageReference Include="Microsoft.SqlServer.Smo" Version="140.2.6" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="10.0.2" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="2.0.0" />
|
|
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
|
|
<PackageReference Include="System.Composition" Version="1.1.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="**\*.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Localization\sr.resx" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="packages.config" />
|
|
</ItemGroup>
|
|
</Project>
|