Skip to content

Commit 6f30f9e

Browse files
Update project for dotnet 8 and include docker-compose example of env (#266)
* update to dotnet 8 and add docker-compose example for env * update k8s phobos web for net 8 port change to 8080 * Fix dockerfile and make traefik port match the old readme * Update build pipeline script to .NET 8 --------- Co-authored-by: Jason Blackburn <jason.blackburn@outlook.com>
1 parent 1c49ec8 commit 6f30f9e

17 files changed

Lines changed: 3211 additions & 44 deletions

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ _This repository contains the source code for the [Phobos Quickstart Tutorial, w
77
88
This project is a ready-made solution for testing [Phobos](https://phobos.petabridge.com/) in a real production environment using the following technologies:
99

10-
- .NET 6.0
11-
- ASP.NET Core 6.0
10+
- .NET 8.0
11+
- ASP.NET Core 8.0
1212
- [Akka.Cluster](https://getakka.net/)
1313
- [Prometheus](https://prometheus.io/)
1414
- [Jaeger Tracing](https://www.jaegertracing.io/)

build-system/azure-pipeline.template.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
persistCredentials: true
2020

2121
- task: UseDotNet@2
22-
displayName: 'Use .NET 7 SDK'
22+
displayName: 'Use .NET 8 SDK'
2323
inputs:
24-
version: 7.x
24+
version: 8.x
2525
# Linux or macOS
2626
- task: Bash@3
2727
displayName: Linux / OSX Build

build-system/windows-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ variables:
2323

2424
steps:
2525
- task: UseDotNet@2
26-
displayName: 'Use .NET 7 SDK'
26+
displayName: 'Use .NET 8 SDK'
2727
inputs:
28-
version: 7.x
28+
version: 8.x
2929

3030
- task: BatchScript@1
3131
displayName: 'FAKE Build'

0 commit comments

Comments
 (0)