Skip to content

Latest commit

 

History

History
 
 

README.md

Build

export VERSION="1.0.0"
export VERSION_SUFFIX="-local"
export ASSEMBLY_VERSION="$VERSION.0"
dotnet build /property:Version=$VERSION$VERSION_SUFFIX /property:AssemblyVersion=$ASSEMBLY_VERSION --configuration Release

Publish

export SOURCE="https://nuget.server/"
export KEY="NUGET_API_KEY"
dotnet nuget push ./bin/Release/CoreFiling.DiffMatchPatch.$VERSION$VERSION_SUFFIX.nupkg --source $SOURCE --api-key $KEY