File tree 2 files changed +26
-4
lines changed
2 files changed +26
-4
lines changed Original file line number Diff line number Diff line change
1
+ name : Build
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+
8
+ jobs :
9
+ build :
10
+ name : Build
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v4
14
+
15
+ - name : Setup .NET 9
16
+ uses : actions/setup-dotnet@v4
17
+ with :
18
+ dotnet-version : 9.0.*
19
+
20
+ - name : Restore dotnet
21
+ run : dotnet restore
22
+
23
+ - name : Build dotnet
24
+ run : dotnet build --no-restore
Original file line number Diff line number Diff line change 7
7
8
8
<p align =" center " >
9
9
<a href =" https://github.com/Intility/Intility.Logging/actions " >
10
- <img alt="compile workflow" src="https://github.com/Intility/Intility.Logging/actions/workflows/compile .yaml/badge.svg" style="max-width:100%;">
10
+ <img alt="Release workflow" src="https://github.com/Intility/Intility.Logging/actions/workflows/build-and-release .yaml/badge.svg" style="max-width:100%;">
11
11
</a >
12
12
13
13
<a href =" https://github.com/Intility/Intility.Logging/actions " >
14
- <img alt="publish workflow" src="https://github.com/Intility/Intility.Logging/actions/workflows/publish .yaml/badge.svg" style="max-width:100%;">
14
+ <img alt="Build workflow" src="https://github.com/Intility/Intility.Logging/actions/workflows/build .yaml/badge.svg" style="max-width:100%;">
15
15
</a >
16
16
17
17
<br />
@@ -76,7 +76,6 @@ The base package inclues a Console sink with a format supporting structured logg
76
76
}
77
77
}
78
78
}
79
-
80
79
```
81
80
82
81
## 🛰️ Addition logging destinations
@@ -121,5 +120,4 @@ public static IHostBuilder CreateHostBuilder(string[] args) =>
121
120
"DiagnosticsLevel" : " Error"
122
121
}
123
122
}
124
-
125
123
```
You can’t perform that action at this time.
0 commit comments