mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-13 17:23:02 -05:00
* sql tools service packages * Delete runtime.centos.7-x64.native.Microsoft.SqlToolsService.sln remove unnecessary solution file * alignment and remove redundent file
29 lines
1.3 KiB
XML
29 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<!--- Do not glob C# source files and other project items -->
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
|
|
<IsPackable>true</IsPackable>
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<PackageDescription>SQL Tools Service runtime components for ubuntu.14.04</PackageDescription>
|
|
<PackageReleaseNotes></PackageReleaseNotes>
|
|
<PackageVersion Condition="'$(SqlToolsVersion)' != ''">$(SqlToolsVersion)</PackageVersion>
|
|
<PackageLicenseExpression></PackageLicenseExpression>
|
|
<PackageLicenseFile>license/license.txt</PackageLicenseFile>
|
|
<PackageIcon>images\sqlserver.png</PackageIcon>
|
|
<PackageIconFullPath></PackageIconFullPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Class1.cs" />
|
|
<None Include="../license/license.txt" Pack="true" PackagePath="license/" />
|
|
<None Include="../images/sqlserver.png" Pack="true" PackagePath="images/" />
|
|
<None Include="../../artifacts/publish/Microsoft.SqlTools.ServiceLayer/ubuntu.14.04/**" Pack="true" PackagePath="runtimes/ubuntu.14.04-x64/native" />
|
|
<None Include="../lib/_._" Pack="true" PackagePath="lib/net5.0/" />
|
|
</ItemGroup>
|
|
</Project>
|