mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 01:25:40 -05:00
* switch to ambient props and targets files * build against Microsoft.Data.SqlClient * build tests * fix test bug * temporarily add SMO nuget to the repo * update to released Microsoft.Data package
37 lines
2.1 KiB
XML
37 lines
2.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
||
<PropertyGroup>
|
||
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||
<PackageId>SqlToolsResourceProviderService</PackageId>
|
||
<AssemblyName>SqlToolsResourceProviderService</AssemblyName>
|
||
<OutputType>Exe</OutputType>
|
||
<Company>Microsoft</Company>
|
||
<Product>Sql Tools Service for Resource Provider services</Product>
|
||
<Description>Provides Resource Provider and control plane support.</Description>
|
||
<Copyright><EFBFBD> Microsoft Corporation. All rights reserved.</Copyright>
|
||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||
<PreserveCompilationContext>true</PreserveCompilationContext>
|
||
<DebugType>portable</DebugType>
|
||
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
|
||
<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;linux-x64</RuntimeIdentifiers>
|
||
</PropertyGroup>
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||
<DefineConstants>TRACE;DEBUG;NETCOREAPP1_0;NETCOREAPP2_0</DefineConstants>
|
||
</PropertyGroup>
|
||
|
||
<ItemGroup>
|
||
<!-- delete reference from project once moving off preview version !-->
|
||
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.6.0-preview3-26501-04" />
|
||
</ItemGroup>
|
||
<ItemGroup>
|
||
<ProjectReference Include="..\Microsoft.SqlTools.Hosting\Microsoft.SqlTools.Hosting.csproj" />
|
||
<!-- Note: must reference the resource provider projects in order for them to be bundled into the app. Otherwise will not have any of the required DLLs and
|
||
dependencies included when the project is shipped. If adding new DLLs, add them here or find another solution to keep them bundled
|
||
-->
|
||
<ProjectReference Include="..\Microsoft.SqlTools.ResourceProvider.Core\Microsoft.SqlTools.ResourceProvider.Core.csproj" />
|
||
<ProjectReference Include="..\Microsoft.SqlTools.ResourceProvider.DefaultImpl\Microsoft.SqlTools.ResourceProvider.DefaultImpl.csproj" />
|
||
</ItemGroup>
|
||
<ItemGroup>
|
||
<EmbeddedResource Include="Localization\sr.resx" />
|
||
<None Include="Localization\sr.strings" />
|
||
</ItemGroup>
|
||
</Project> |