Skip to content

Commit

Permalink
Update to NET 8 and Aardvark.Base 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hyazinthh committed Jul 17, 2024
1 parent 6aac31d commit 83285c2
Show file tree
Hide file tree
Showing 59 changed files with 1,615 additions and 1,612 deletions.
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
]
},
"aardpack": {
"version": "1.0.21",
"version": "1.0.24",
"commands": [
"aardpack"
]
Expand Down
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/bin/Debug/net6.0/Viewer.dll",
"program": "${workspaceFolder}/bin/Debug/net8.0/Viewer.dll",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "6.0.0",
"version": "8.0.0",
"rollForward": "latestFeature",
"allowPrerelease": false
}
Expand Down
2 changes: 1 addition & 1 deletion import
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

./src/import/bin/Release/net6.0/import "$@"
./src/import/bin/Release/net8.0/import "$@"
2 changes: 1 addition & 1 deletion import.cmd
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@echo off
SETLOCAL
%~dp0\src\import\bin\Release\net6.0\import.exe %*
%~dp0\src\import\bin\Release\net8.0\import.exe %*
45 changes: 23 additions & 22 deletions paket.dependencies
Original file line number Diff line number Diff line change
@@ -1,47 +1,48 @@
version 5.257.0
framework: auto-detect

source https://api.nuget.org/v3/index.json
source https://vrvis.myget.org/F/aardvark_public/api/v2

storage: none
source https://api.nuget.org/v3/index.json

////////////////////////////////////////////////////////////////////////
// dotnet
nuget FSharp.Core >= 5.0.1 lowest_matching: true
nuget Nullable >= 1.3.1
nuget System.Collections.Immutable >= 6.0.0 lowest_matching: true
nuget System.Text.Json >= 6.0.0 lowest_matching: true
nuget FSharp.Core >= 8.0.0 lowest_matching: true
nuget Nullable >= 1.3.1 lowest_matching: true
nuget System.Collections.Immutable >= 8.0.0 lowest_matching: true
nuget System.Text.Json >= 8.0.4 lowest_matching: true

////////////////////////////////////////////////////////////////////////
// https://github.com/aardvark-platform/aardvark.base
nuget Aardvark.Base ~> 5.2.28
nuget Aardvark.Base.IO ~> 5.2.28
nuget Aardvark.Base.Tensors ~> 5.2.28
nuget Aardvark.Geometry ~> 5.2.28
nuget Aardvark.Base ~> 5.3.0-prerelease0003
nuget Aardvark.Base.IO ~> 5.3.0-prerelease0003
nuget Aardvark.Base.Tensors ~> 5.3.0-prerelease0003
nuget Aardvark.Geometry ~> 5.3.0-prerelease0003

////////////////////////////////////////////////////////////////////////
// https://github.com/aardvark-platform/aardvark.rendering
nuget Aardvark.Application.Utilities ~> 5.4.0
nuget Aardvark.Application.Slim.Vulkan ~> 5.4.0
nuget Aardvark.Application.Utilities ~> 5.5.0-prerelease0001
nuget Aardvark.Application.Slim.Vulkan ~> 5.5.0-prerelease0001

////////////////////////////////////////////////////////////////////////
// https://github.com/aardvark-community/aardvark.data.durable.dotnet
nuget Aardvark.Data.Durable ~> 0.3.15
nuget Aardvark.Data.Durable.Codec ~> 0.3.15
nuget Aardvark.Data.Durable ~> 0.4.4-prerelease0001
nuget Aardvark.Data.Durable.Codec ~> 0.4.4-prerelease0001

////////////////////////////////////////////////////////////////////////
// 3rd-party
nuget Crc32.NET ~> 1.2.0
nuget Microsoft.NET.Test.Sdk ~> 17.3.1
nuget NUnit ~> 3.13.3
nuget NUnit3TestAdapter ~> 4.2.1

nuget Uncodium.Eigensystems ~> 1.1.2
nuget Uncodium.SimpleStore ~> 3.0.29
nuget Unofficial.DotSpatial.Projections ~> 0.0.4

nuget sharpcompress ~> 0.30.0 // only used in Apps/heracli

// BUILD
nuget Aardvark.Build ~> 1.0.20
nuget Aardvark.Build ~> 1.0.24

group Test
framework: net8.0
storage: none
source https://api.nuget.org/v3/index.json

nuget Microsoft.NET.Test.Sdk ~> 17.10.0
nuget NUnit ~> 4.1.0
nuget NUnit3TestAdapter ~> 4.5.0
Loading

0 comments on commit 83285c2

Please sign in to comment.