File tree Expand file tree Collapse file tree 4 files changed +11
-16
lines changed
examples/TileDB.CSharp.Example Expand file tree Collapse file tree 4 files changed +11
-16
lines changed Original file line number Diff line number Diff line change 23
23
- os : ubuntu-latest
24
24
platform : linux-x86_64
25
25
- os : macos-latest
26
- platform : macos-x86_64
26
+ platform : macos-arm64
27
27
- os : windows-latest
28
28
platform : windows-x86_64
29
29
- tag : dev
@@ -142,11 +142,7 @@ jobs:
142
142
- name : Test TileDB-CSharp
143
143
run : dotnet test tests/TileDB.CSharp.Test/TileDB.CSharp.Test.csproj -c Release
144
144
145
- - name : Run examples (.NET 5)
146
- shell : bash
147
- run : find examples/ -name *.csproj | xargs -I{} dotnet run --project {} -f net5.0
148
-
149
- - name : Run examples (.NET 6)
145
+ - name : Run examples
150
146
shell : bash
151
147
run : find examples/ -name *.csproj | xargs -I{} dotnet run --project {} -f net6.0
152
148
Original file line number Diff line number Diff line change 63
63
run : |
64
64
dotnet test -c Release tests/TileDB.CSharp.Test
65
65
66
- - name : Run examples (.NET 5)
66
+ - name : Run examples
67
67
shell : bash
68
68
run : |
69
- find examples/ -name *.csproj | xargs -I{} dotnet run --project {} -f net5.0
70
-
71
- - name : Run examples (.NET 6)
72
- shell : bash
73
- run : |
74
- find examples/ -name *.csproj | xargs -I{} dotnet run --project {} -f net5.0
69
+ find examples/ -name *.csproj | xargs -I{} dotnet run --project {} -f net6.0
Original file line number Diff line number Diff line change 4
4
<OutputType >Exe</OutputType >
5
5
<RollForward >Major</RollForward >
6
6
<RootNamespace >TileDB.CSharp.Examples</RootNamespace >
7
- <TargetFrameworks >net5.0; net6.0;net7.0</ TargetFrameworks >
7
+ <TargetFramework > net6.0</ TargetFramework >
8
8
<UseCurrentRuntimeIdentifier >true</UseCurrentRuntimeIdentifier >
9
9
</PropertyGroup >
10
10
Original file line number Diff line number Diff line change 1
- <Project Sdk =" Microsoft.NET.Sdk" >
1
+ <Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
3
<IsPackable >false</IsPackable >
4
4
<Nullable >enable</Nullable >
20
20
21
21
<ItemGroup >
22
22
<ProjectReference Include =" ..\..\sources\TileDB.CSharp\TileDB.CSharp.csproj" />
23
- <PackageVersion Include =" TileDB.Native" Version =" $(TileDBNativeVersionMajor).$(TileDBNativeVersionMajor).*" />
23
+ <!-- To run tests with a TileDB patch, uncomment the following lines: -->
24
+ <!--
25
+ <PackageReference Include="TileDB.Native" />
26
+ <PackageVersion Update="TileDB.Native" Version="<version>" />
27
+ -->
24
28
</ItemGroup >
25
29
</Project >
You can’t perform that action at this time.
0 commit comments