.NET Core command-line (CLI) tool to update project properties and version numbers on build.
Install the global tool
dotnet tool install -g dotnet-property
Update project property
dotnet property <projectGlob> <property:value>
Set the version number in a shared props file
dotnet property "**/version.props" Version:"1.0.0.3"
Update project version and copyright properties
dotnet property "**/Project.csproj" Version:"1.0.0.3" Copyright:"Copyright 2018 LoreSoft"
