Skip to content

Commit

Permalink
Merge pull request microsoft#268 from microsoft/ellab-exception
Browse files Browse the repository at this point in the history
bump up VeriSol version to 0.1.5-alpha; last merge '69a51b1 3c39efb'
  • Loading branch information
shuvendu-lahiri authored May 27, 2020
2 parents 9da175a + c90ee5b commit b23ef5c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 20 deletions.
5 changes: 3 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.

Expand Down
32 changes: 16 additions & 16 deletions Sources/VeriSol.props
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<RepositoryROOT Condition=" '$(RepositoryROOT)' == '' ">$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), `.gitignore`))</RepositoryROOT>
<OutputPath>$(RepositoryROOT)\bin\$(Configuration)</OutputPath>
<BaseIntermediateOutputPath>$(RepositoryROOT)\obj\$(Configuration)\$(TargetFramework)\$(MSBuildProjectName)</BaseIntermediateOutputPath>
<PackageOutputPath>$(RepositoryROOT)\nupkg</PackageOutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>

<PropertyGroup>
<VersionPrefix>0.1.4-alpha</VersionPrefix>
</PropertyGroup>

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<RepositoryROOT Condition=" '$(RepositoryROOT)' == '' ">$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), `.gitignore`))</RepositoryROOT>
<OutputPath>$(RepositoryROOT)\bin\$(Configuration)</OutputPath>
<BaseIntermediateOutputPath>$(RepositoryROOT)\obj\$(Configuration)\$(TargetFramework)\$(MSBuildProjectName)</BaseIntermediateOutputPath>
<PackageOutputPath>$(RepositoryROOT)\nupkg</PackageOutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>

<PropertyGroup>
<VersionPrefix>0.1.5-alpha</VersionPrefix>
</PropertyGroup>

</Project>
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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'

0 comments on commit b23ef5c

Please sign in to comment.