mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-06 09:35:39 -05:00
51 lines
2.4 KiB
XML
51 lines
2.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<AssemblyName>MicrosoftKustoServiceLayer</AssemblyName>
|
|
<OutputType>Exe</OutputType>
|
|
<EnableDefaultItems>false</EnableDefaultItems>
|
|
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
|
|
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
|
|
<EmbeddedResourceUseDependentUponConvention>false</EmbeddedResourceUseDependentUponConvention>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<DefineConstants>$(DefineConstants);NETCOREAPP1_0;TRACE</DefineConstants>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<PreserveCompilationContext>true</PreserveCompilationContext>
|
|
<DebugType>portable</DebugType>
|
|
<RuntimeIdentifiers>$(ToolsServiceTargetRuntimes)</RuntimeIdentifiers>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(BUILD_DOTNET_TOOL)' == 'true'">
|
|
<PackAsTool>true</PackAsTool>
|
|
<ToolCommandName>$(AssemblyName)</ToolCommandName>
|
|
<PackageOutputPath>./nupkg</PackageOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Azure.OperationalInsights" />
|
|
<PackageReference Include="Microsoft.SqlServer.DACFx" />
|
|
<PackageReference Include="System.Text.Encoding.CodePages" />
|
|
<PackageReference Include="Microsoft.Azure.Kusto.Data" />
|
|
<PackageReference Include="System.Net.Http" />
|
|
<PackageReference Include="Microsoft.Azure.Kusto.Language" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="**\*.cs" Exclude="**/obj/**/*.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="../Microsoft.SqlTools.Hosting/Microsoft.SqlTools.Hosting.csproj" />
|
|
<ProjectReference Include="../Microsoft.SqlTools.Credentials/Microsoft.SqlTools.Credentials.csproj" />
|
|
<ProjectReference Include="../Microsoft.SqlTools.ManagedBatchParser/Microsoft.SqlTools.ManagedBatchParser.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="ObjectExplorer\DataSourceModel\TreeNodeDefinition.xml" />
|
|
<EmbeddedResource Include="Localization\*.resx" />
|
|
<None Include="Localization\sr.strings" />
|
|
</ItemGroup>
|
|
</Project>
|