diff --git a/INSTALL.md b/INSTALL.md index 54fef3cb..9a519908 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -9,7 +9,7 @@ The following are dynamically installed at VeriSol runtime (the first time only) ### Install from nuget.org Install to the **global** dotnet CLI tools cache so that you can run command `VeriSol` from anywhere: ``` -dotnet tool install VeriSol --version 0.1.4-alpha --global +dotnet tool install VeriSol --version 0.1.5-alpha --global ``` ### Install from sources @@ -22,12 +22,13 @@ git clone https://github.com/microsoft/verisol.git From %VERISOL_PATH% (the root folder of the repository), perform ``` + dotnet build Sources\VeriSol.sln ``` Install to the **global** dotnet CLI tools cache so that you can run command `VeriSol` from anywhere: ``` -dotnet tool install VeriSol --version 0.1.4-alpha --global --add-source %VERISOL_PATH%/nupkg/ +dotnet tool install VeriSol --version 0.1.5-alpha --global --add-source %VERISOL_PATH%/nupkg/ ``` You may need to uninstall a previous version first. Use `dotnet tool uninstall --global VeriSol` first then. diff --git a/Sources/VeriSol.props b/Sources/VeriSol.props index 60370bed..54c13d10 100644 --- a/Sources/VeriSol.props +++ b/Sources/VeriSol.props @@ -1,17 +1,17 @@ - - - - Debug - $([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), `.gitignore`)) - $(RepositoryROOT)\bin\$(Configuration) - $(RepositoryROOT)\obj\$(Configuration)\$(TargetFramework)\$(MSBuildProjectName) - $(RepositoryROOT)\nupkg - false - false - - - - 0.1.4-alpha - - + + + + Debug + $([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), `.gitignore`)) + $(RepositoryROOT)\bin\$(Configuration) + $(RepositoryROOT)\obj\$(Configuration)\$(TargetFramework)\$(MSBuildProjectName) + $(RepositoryROOT)\nupkg + false + false + + + + 0.1.5-alpha + + \ No newline at end of file diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f9b4858c..2855727f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -28,7 +28,7 @@ steps: inputs: command: custom custom: 'tool' - arguments: 'install --tool-path $(Build.SourcesDirectory)/Tools/ VeriSol --version 0.1.4-alpha --add-source $(Build.SourcesDirectory)/nupkg/' + arguments: 'install --tool-path $(Build.SourcesDirectory)/Tools/ VeriSol --version 0.1.5-alpha --add-source $(Build.SourcesDirectory)/nupkg/' - pwsh: | $(Build.SourcesDirectory)/Tools/VeriSol $(Build.SourcesDirectory)/Test/regressions/DAO-Sim-Buggy.sol Mallory /tryProof /tryRefutation:10 /printTransactionSequence @@ -44,7 +44,7 @@ steps: inputs: command: custom custom: 'tool' - arguments: 'install --tool-path $(Build.SourcesDirectory)/Tools/ SolToBoogieTest --version 0.1.4-alpha --add-source $(Build.SourcesDirectory)/nupkg/' + arguments: 'install --tool-path $(Build.SourcesDirectory)/Tools/ SolToBoogieTest --version 0.1.5-alpha --add-source $(Build.SourcesDirectory)/nupkg/' - pwsh: '$(Build.SourcesDirectory)/Tools/VeriSolRegressionRunner $(Build.SourcesDirectory)/Test/' displayName: 'Run regression tests'