3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

CI: update dotnet example to coreclr 2.0

This commit is contained in:
Yatao Li 2018-09-12 14:26:21 +08:00
parent 20c128d3fa
commit aae28bd0eb
2 changed files with 14 additions and 2 deletions

View file

@ -91,8 +91,8 @@ if [ "X${DOTNET_BINDINGS}" = "X1" ]; then
# Build .NET example
# FIXME: Move compliation step into CMake target
mcs ${Z3_SRC_DIR}/examples/dotnet/Program.cs /target:exe /out:dotnet_test.exe /reference:Microsoft.Z3.dll /r:System.Numerics.dll
# Run .NET example
run_quiet run_non_native_binding mono ./dotnet_test.exe
# Build & Run .NET example
run_quiet run_non_native_binding dotnet run -p ${Z3_SRC_DIR}/examples/dotnet/dotnet.csproj
fi
if [ "X${JAVA_BINDINGS}" = "X1" ]; then

View file

@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Z3" Version="4.8.0" />
</ItemGroup>
</Project>