Adding NuGet Publish target

This commit is contained in:
Jordan Wages 2025-01-29 22:32:08 -06:00
parent a0492aaa0b
commit 1de8ba8d6e
2 changed files with 8 additions and 0 deletions

View file

@ -16,4 +16,6 @@
</None> </None>
</ItemGroup> </ItemGroup>
<Import Project="NuGetPublish.targets" Condition="Exists('NuGetPublish.targets')" />
</Project> </Project>

View file

@ -0,0 +1,6 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Placeholder target file for NuGet publishing -->
<Target Name="PublishNuGet" AfterTargets="Pack">
<!-- To enable NuGet publishing, add an <Exec> command inside the <Target>. -->
</Target>
</Project>