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:
parent
20c128d3fa
commit
aae28bd0eb
|
@ -91,8 +91,8 @@ if [ "X${DOTNET_BINDINGS}" = "X1" ]; then
|
||||||
# Build .NET example
|
# Build .NET example
|
||||||
# FIXME: Move compliation step into CMake target
|
# 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
|
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
|
# Build & Run .NET example
|
||||||
run_quiet run_non_native_binding mono ./dotnet_test.exe
|
run_quiet run_non_native_binding dotnet run -p ${Z3_SRC_DIR}/examples/dotnet/dotnet.csproj
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "X${JAVA_BINDINGS}" = "X1" ]; then
|
if [ "X${JAVA_BINDINGS}" = "X1" ]; then
|
||||||
|
|
12
examples/dotnet/dotnet.csproj
Normal file
12
examples/dotnet/dotnet.csproj
Normal 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>
|
Loading…
Reference in a new issue