Skip to content

Commit 7116b5e

Browse files
committed
Update package properties. Include package README.
1 parent 4fd4d9d commit 7116b5e

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

Directory.Build.props

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
<Authors>Jeffrey Sharp</Authors>
2020
<Company>Subatomix Research Inc.</Company>
2121
<Copyright>© $([System.DateTime]::UtcNow.Year) $(Company)</Copyright>
22-
<PackageLicenseExpression>ISC</PackageLicenseExpression>
22+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
23+
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
24+
<PackageReadmeFile>README.md</PackageReadmeFile>
2325
<PackageProjectUrl>https://github.com/sharpjs/Prequel</PackageProjectUrl>
2426
<PackageTags>sqlcmd sql preprocessor</PackageTags>
2527
<PackageReleaseNotes>$(PackageProjectUrl)/blob/main/CHANGES.md</PackageReleaseNotes>

Directory.Build.targets

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,12 @@
1212
-->
1313

1414
<ItemGroup Condition="'$(IsPackable)' == 'true'">
15-
<None Include="..\icon.png" Link="Properties\icon.png"
16-
Pack="true" PackagePath="" CopyToOutputDirectory="Never" />
17-
<None Include="..\LICENSE.txt" Link="Properties\LICENSE.txt"
15+
<None Include="..\icon.png" LinkBase="Properties"
16+
Pack="true" PackagePath="$(PackageIcon)" CopyToOutputDirectory="Never" />
17+
<None Include="..\LICENSE.txt" LinkBase="Properties"
1818
Pack="true" PackagePath="$(PackageLicenseFile)" CopyToOutputDirectory="Never" />
19+
<None Include="..\README.md" LinkBase="Properties"
20+
Pack="true" PackagePath="$(PackageReadmeFile)" CopyToOutputDirectory="Never" />
1921
</ItemGroup>
2022

2123
<!-- Visibility -->

0 commit comments

Comments
 (0)