mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 01:25:40 -05:00
36 lines
1.9 KiB
XML
36 lines
1.9 KiB
XML
<Project>
|
|
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
|
|
<PropertyGroup>
|
|
<TargetFramework>$(ServiceLayerTargetFramework)</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>
|
|
<OUTPUT_DIR>$(MSBuildThisFileDirectory)</OUTPUT_DIR>
|
|
<PackageReleaseNotes></PackageReleaseNotes>
|
|
<!-- Currently we hardcode this because the build pipelines don't version the assemblies,
|
|
it's only the release pipeline that generates the tag to use for the Github release. This
|
|
is a workaround to get releases out until the pipelines can be refactored to pass in
|
|
the correct version -->
|
|
<PackageVersion>3.0.0-release.157</PackageVersion>
|
|
<PackageLicenseExpression></PackageLicenseExpression>
|
|
<PackageLicenseFile>license/license.txt</PackageLicenseFile>
|
|
<PackageIcon>images\sqlserver.png</PackageIcon>
|
|
<PackageIconFullPath></PackageIconFullPath>
|
|
<Authors>Microsoft</Authors>
|
|
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
|
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
|
|
<PackageProjectUrl>https://github.com/Microsoft/sqltoolsservice</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/Microsoft/sqltoolsservice</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Include="../license/license.txt" Pack="true" PackagePath="license/" />
|
|
<None Include="../images/sqlserver.png" Pack="true" PackagePath="images/" />
|
|
<None Include="../lib/_._" Pack="true" PackagePath="lib/$(TargetFramework)/" />
|
|
</ItemGroup>
|
|
</Project>
|