I have a bunch of utilities that I have created for internal use, using Net Standard.
Under Project Properties->Package I have set "Generate Nuget Packages on build" .csproj, in which I have added:
<PropertyGroup>
<PackageOutputPath>MyDirPath</PackageOutputPath>
</PropertyGroup>
This all works well and good, and it creates MyInternalPackage.1.0.0.nupkg in the correct folder.
I want to know how I can auto increment the version number, when I build/rebuild my Net Standard Project.
Over to you.