Skip to content

Commit 197eff5

Browse files
authored
Merge pull request #167 from jagilber/release_30
Release 30 migrate from deprecated modules for component governance
2 parents ae9a48b + 2ae9d23 commit 197eff5

30 files changed

+7074
-6287
lines changed

Diff for: .vscode/launch.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@
55
"version": "0.2.0",
66
"configurations": [
77
{
8-
"name": ".NET Core 31 Launch with Args (console)",
8+
"name": ".NET 8 Launch with Args (console)",
99
"type": "coreclr",
1010
"request": "launch",
1111
"preLaunchTask": "build",
12-
"program": "${workspaceFolder}/src/bin/Debug/netcoreapp3.1/CollectSFData.dll",
12+
"program": "${workspaceFolder}/src/bin/Debug/net8.0/CollectSFData.dll",
1313
"args": [
1414
//"${input:args}"
1515
"-type",
1616
"trace",
1717
"-krt",
1818
"1"
1919
],
20-
"cwd": "${workspaceFolder}/src/bin/Debug/netcoreapp3.1",
20+
"cwd": "${workspaceFolder}/src/bin/Debug/net8.0",
2121
"stopAtEntry": false,
2222
"console": "internalConsole",
2323
},
2424
{
25-
"name": ".NET Core 6 Launch with Args (console)",
25+
"name": ".NET 6 LTS Launch with Args (console)",
2626
"type": "coreclr",
2727
"request": "launch",
2828
"preLaunchTask": "build",
@@ -48,11 +48,11 @@
4848
"stopAtEntry": false
4949
},
5050
{
51-
"name": ".NET Core 31 Launch (console)",
51+
"name": ".NET 8.0 Launch (console)",
5252
"type": "coreclr",
5353
"request": "launch",
5454
"preLaunchTask": "build",
55-
"program": "${workspaceFolder}/src/bin/Debug/netcoreapp3.1/CollectSFData.dll",
55+
"program": "${workspaceFolder}/src/bin/Debug/net8.0/CollectSFData.dll",
5656
"args": [],
5757
"cwd": "${workspaceFolder}/src/bin/Debug/netcoreapp3.1",
5858
"console": "internalConsole",

Diff for: CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Change log
22

3+
## 10/30/2023 v3.0.2310.13022
4+
5+
- migrate from deprecated modules for component governance
6+
- Microsoft.Azure.Storage -> Azure.Storage
7+
- Microsoft.Azure.Queues -> Azure.Storage.Queues
8+
- Microsoft.Azure.Table -> Azure.Data.Tables
9+
- update dependencies for component governance
10+
- Azure.Identity 1.10.1 -> 1.10.2
11+
- Microsoft.Azure.Kusto.Data
12+
- Update ConvertToUtcTime to use .net core 'zzz' format specifier changes
13+
- update service fabric modules / manifests to 10.0
14+
- remove .netcoreapp2.1 target framework
15+
- remove .netcoreapp3.1 target framework
16+
- add .net8.0 target framework in preparation for release
17+
18+
## 09/24/2023 v2.9.2309.12421
19+
20+
- update dependencies for component governance
21+
322
## 06/11/2023 v2.9.2306.11116
423

524
- add internal ado pipeline yaml for central feed service compliance

Diff for: azure-pipelines.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
name: ADO CI CollectSFData
44

55
trigger:
6-
- master
6+
branches:
7+
include:
8+
- '*'
79

810
pool:
911
vmImage: 'windows-latest'

Diff for: docs/contributing.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ To report issue with collectsfdata, create a new issue in github repo [new issue
88

99
### CollectSFData / CollectSFDataDll
1010

11-
Visual Studio 2019 with .net 4.7.2 / .netcoreapp3.1 / net5
11+
Visual Studio 2019 with .net 4.6.2 / net6.0 / net8.0
1212
or
13-
Visual Studio Code with .net 4.7.2 / .netcoreapp3.1 / net5
13+
Visual Studio Code with .net 4.6.2 / net6.0 / net8.0
1414

1515
### **launch.json**
1616

@@ -70,9 +70,9 @@ to build a specific configuration:
7070

7171
## CollectSFDataDllTest
7272

73-
Visual Studio Code with .netcoreapp3.1 / net5 and powershell 7.0+
73+
Visual Studio Code with .net6.0 / net5 and powershell 7.0+
7474
or
75-
Visual Studio 2019 with .netcoreapp3.1 / net5 and powershell 7.0+
75+
Visual Studio 2019 with .net6.0 / net5 and powershell 7.0+
7676

7777
### App registration (user) setup
7878

0 commit comments

Comments
 (0)