33 <ItemGroup >
44 <!-- NBGV drives versions; PrivateAssets=all keeps it out of consumers -->
55 <PackageReference Include =" Nerdbank.GitVersioning" Version =" 3.8.38-alpha" PrivateAssets =" all" />
6+
67 <!-- SourceLink for GitHub -->
78 <PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 8.0.0" >
89 <PrivateAssets >all</PrivateAssets >
910 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
1011 </PackageReference >
12+
13+ <PackageReference Include =" Microsoft.CodeAnalysis.CSharp.Scripting" Version =" 4.14.0" />
1114 </ItemGroup >
1215
1316 <!-- SourceLink / build hygiene -->
1417 <PropertyGroup >
15- <!-- Deterministic builds + embed sources for better debugging -->
1618 <ContinuousIntegrationBuild >true</ContinuousIntegrationBuild >
1719 <Deterministic >true</Deterministic >
1820 <EmbedUntrackedSources >true</EmbedUntrackedSources >
2123
2224 <!-- Package metadata applied only to packable projects -->
2325 <PropertyGroup Condition =" '$(IsPackable)' == 'true'" >
24- <!-- NuGet README -->
2526 <PackageReadmeFile >README.md</PackageReadmeFile >
27+ <PackageLicenseFile >LICENSE</PackageLicenseFile >
28+ <PackageRequireLicenseAcceptance >true</PackageRequireLicenseAcceptance >
2629
27- <!-- NuGet Release Notes link -->
2830 <PackageReleaseNotes >https://github.com/Stillpoint-Software/Hyperbee.Pipeline/releases/latest</PackageReleaseNotes >
2931
30- <!-- Repository metadata (shows on NuGet) -->
3132 <RepositoryUrl >https://github.com/Stillpoint-Software/Hyperbee.Pipeline</RepositoryUrl >
3233 <RepositoryType >git</RepositoryType >
3334 <PackageProjectUrl >https://github.com/Stillpoint-Software/Hyperbee.Pipeline</PackageProjectUrl >
3435 </PropertyGroup >
3536
36- <!-- Pull the root README into the package root -->
37+ <!-- Pull README & LICENSE into the package root -->
3738 <ItemGroup Condition =" '$(IsPackable)' == 'true'" >
3839 <None Include =" $(MSBuildThisFileDirectory)README.md"
3940 Pack =" true"
4041 PackagePath =" \"
41- Link =" README.md" />
42+ Link =" README.md" />
43+
44+ <None Include =" $(MSBuildThisFileDirectory)LICENSE"
45+ Pack =" true"
46+ PackagePath =" \"
47+ Link =" LICENSE" />
4248 </ItemGroup >
43- </Project >
49+ </Project >
0 commit comments