forked from microsoft/verisol
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Xinxing Liu
committed
Sep 17, 2019
1 parent
45dd63e
commit 56f5e34
Showing
14 changed files
with
68 additions
and
504 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,7 @@ bld/ | |
[Bb]in/ | ||
[Oo]bj/ | ||
[Ll]og/ | ||
[Nn]upkg/ | ||
|
||
# Visual Studio 2015/2017 cache/options directory | ||
.vs/ | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>netcoreapp2.2</TargetFramework> | ||
<HighEntropyVA>true</HighEntropyVA> | ||
</PropertyGroup> | ||
|
||
<Import Project="..\VeriSol.props" /> | ||
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" /> | ||
|
||
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" /> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0"> | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>netcoreapp2.2</TargetFramework> | ||
<FileUpgradeFlags> | ||
</FileUpgradeFlags> | ||
<UpgradeBackupLocation> | ||
</UpgradeBackupLocation> | ||
<OldToolsVersion>2.0</OldToolsVersion> | ||
<HighEntropyVA>true</HighEntropyVA> | ||
</PropertyGroup> | ||
|
||
<Import Project="..\VeriSol.props" /> | ||
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" /> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\BoogieAST\BoogieAST.csproj" /> | ||
<ProjectReference Include="..\SolidityAST\SolidityAST.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<SolcFiles Include="..\..\Tool\**\*.*"/> | ||
</ItemGroup> | ||
|
||
<Target Name="CopySolFiles" AfterTargets="AfterBuild"> | ||
<Copy | ||
SourceFiles="@(SolcFiles)" | ||
DestinationFolder="$(OutDir)\solc\" | ||
/> | ||
</Target> | ||
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" /> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,24 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>netcoreapp2.2</TargetFramework> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<PackAsTool>true</PackAsTool> | ||
<ToolCommandName>VeriSolRegressionRunner</ToolCommandName> | ||
<VeriSolPublishDir>..\..\Binaries\</VeriSolPublishDir> | ||
</PropertyGroup> | ||
|
||
<Import Project="..\VeriSol.props" /> | ||
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" /> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.1.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.1.1" /> | ||
<ProjectReference Include="..\SolidityAST\SolidityAST.csproj" /> | ||
<ProjectReference Include="..\BoogieAST\BoogieAST.csproj" /> | ||
<ProjectReference Include="..\SolToBoogie\SolToBoogie.csproj" /> | ||
<ProjectReference Include="..\..\corral\cba-NetCore.csproj" /> | ||
<ProjectReference Include="..\..\corral\boogie\Source\BoogieDriver\BoogieDriver-NetCore.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<CorralFiles Include="..\..\corral\bin\Debug\netcoreapp2.2\corral.runtimeconfig.json"/> | ||
<Z3Files Include="..\..\Tool\z3*"/> | ||
<SolToBoogieTestDlls Include="$(OutDir)\**\*.*"/> | ||
</ItemGroup> | ||
<Target Name="CopySolToBoogieTestDlls" AfterTargets="Publish"> | ||
<Copy | ||
SourceFiles="@(SolToBoogieTestDlls)" | ||
DestinationFolder="$(VeriSolPublishDir)\" | ||
/> | ||
</Target> | ||
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" /> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,21 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>netcoreapp2.2</TargetFramework> | ||
<HighEntropyVA>true</HighEntropyVA> | ||
</PropertyGroup> | ||
|
||
<Import Project="..\VeriSol.props" /> | ||
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" /> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="JsonSubTypes" Version="1.4.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.1.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.1.1" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" /> | ||
</ItemGroup> | ||
|
||
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" /> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>netcoreapp2.2</TargetFramework> | ||
<HighEntropyVA>true</HighEntropyVA> | ||
<HighEntropyVA>true</HighEntropyVA> | ||
</PropertyGroup> | ||
|
||
<Import Project="..\VeriSol.props" /> | ||
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" /> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\SolidityAST\SolidityAST.csproj" /> | ||
</ItemGroup> | ||
|
||
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" /> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +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.0</VersionPrefix> | ||
</PropertyGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.