Files
sqltoolsservice/packages/Directory.Build.props
2021-11-16 14:00:10 -08:00

30 lines
1.5 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>
</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>