我有类库项目,我想为其创建一个nuget
包。
所以我首先通过在项目文件夹中运行以下内容来创建nuspec
文件:
'nuget spec'
然后我在项目文件中添加了以下内容:
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Target Name="AfterBuild">
<Message Text="### AfterBuild ###" Importance="high" />
<Exec Command="nuget pack MyProjectNameHere.csproj -Prop Platform=AnyCPU"></Exec>
</Target>
当我使用VS构建项目时,未构建包,并且未显示消息。
我错过了什么?