Skip to content

Commit 667e7a4

Browse files
authored
Add projects for obsolete/replaced packages (SteeltoeOSS#1565)
* Add projects for obsolete/replaced packages * Restore packages in release configuration * Auto-fill descriptions/tags from 3x project files * Manually provide missing descriptions/tags * Replace commas with semicolons in tags * Clreanup tags in non-obsolete projects * Run code cleanup * Make target names unique, collect all warnings before compile is aborted * Mention originating package in warning * Use alternate trigger to improve the experience in Visual Studio * Review feedback: adjust text for removed packages * Review feedback: adjust text for superseded packages
1 parent 89689d8 commit 667e7a4

File tree

206 files changed

+3032
-16
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

206 files changed

+3032
-16
lines changed

.github/workflows/Steeltoe.All.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
uses: actions/checkout@v4
8282

8383
- name: Restore packages
84-
run: dotnet restore ${{ env.SOLUTION_FILE }} --verbosity minimal
84+
run: dotnet restore ${{ env.SOLUTION_FILE }} /p:Configuration=Release --verbosity minimal
8585

8686
- name: Build solution
8787
run: dotnet build ${{ env.SOLUTION_FILE }} --no-restore --configuration Release --verbosity minimal

.github/workflows/component-shared-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
uses: actions/checkout@v4
7979

8080
- name: Restore packages
81-
run: dotnet restore ${{ env.SOLUTION_FILE }} --verbosity minimal
81+
run: dotnet restore ${{ env.SOLUTION_FILE }} /p:Configuration=Release --verbosity minimal
8282

8383
- name: Build solution
8484
run: dotnet build ${{ env.SOLUTION_FILE }} --no-restore --configuration Release --verbosity minimal

.github/workflows/package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
uses: actions/checkout@v4
4343

4444
- name: Restore packages
45-
run: dotnet restore ${{ env.SOLUTION_FILE }} --verbosity minimal
45+
run: dotnet restore ${{ env.SOLUTION_FILE }} /p:Configuration=Release --verbosity minimal
4646

4747
- name: Calculate package version (for release)
4848
if: ${{ github.event_name == 'release' }}

.github/workflows/sonarcube.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
fetch-depth: 0
6565

6666
- name: Restore packages
67-
run: dotnet restore ${{ env.SOLUTION_FILE }} --verbosity minimal
67+
run: dotnet restore ${{ env.SOLUTION_FILE }} /p:Configuration=Release --verbosity minimal
6868

6969
- name: Begin Sonar .NET scanner
7070
id: sonar_begin

.github/workflows/verify-code-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run: dotnet tool restore --verbosity minimal
4343

4444
- name: Restore packages
45-
run: dotnet restore ${{ env.SOLUTION_FILE }} --verbosity minimal
45+
run: dotnet restore ${{ env.SOLUTION_FILE }} /p:Configuration=Release --verbosity minimal
4646

4747
- name: CleanupCode (on PR diff)
4848
if: ${{ github.event_name == 'pull_request' }}

src/Common/src/Hosting/Steeltoe.Common.Hosting.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<TargetFrameworks>net8.0</TargetFrameworks>
44
<Description>Steeltoe library for commonly-used ASP.NET Core hosting-related functions.</Description>
5-
<PackageTags>hosting;</PackageTags>
5+
<PackageTags>hosting</PackageTags>
66
<IsPackable>true</IsPackable>
77
</PropertyGroup>
88

src/Common/src/Http/Steeltoe.Common.Http.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<TargetFrameworks>net8.0</TargetFrameworks>
44
<Description>Shared code related to HTTP, primarily for working with HttpClient.</Description>
5-
<PackageTags>http;</PackageTags>
5+
<PackageTags>http</PackageTags>
66
<IsPackable>true</IsPackable>
77
</PropertyGroup>
88

src/Common/src/Logging/Steeltoe.Common.Logging.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<TargetFrameworks>net8.0</TargetFrameworks>
44
<Description>Abstractions and code for bootstrap logging, before the IoC container is built. Bootstrap logging is replaced by the runtime logging (what the rest of your application is using) after the IoC container is built.</Description>
5-
<PackageTags>bootstrap;logging;</PackageTags>
5+
<PackageTags>bootstrap;logging</PackageTags>
66
<IsPackable>true</IsPackable>
77
</PropertyGroup>
88

src/Configuration/src/RandomValue/Steeltoe.Configuration.RandomValue.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<TargetFrameworks>net8.0</TargetFrameworks>
44
<Description>Configuration provider for generating random values.</Description>
5-
<PackageTags>configuration;ConfigurationProvider;random;</PackageTags>
5+
<PackageTags>configuration;ConfigurationProvider;random</PackageTags>
66
<IsPackable>true</IsPackable>
77
</PropertyGroup>
88

src/Logging/src/Abstractions/Steeltoe.Logging.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFrameworks>net8.0</TargetFrameworks>
44
<RootNamespace>Steeltoe.Logging</RootNamespace>
55
<Description>Abstractions for managing minimum logging levels at runtime.</Description>
6-
<PackageTags>abstractions;logging;dynamic-logging;log-management;</PackageTags>
6+
<PackageTags>abstractions;logging;dynamic-logging;log-management</PackageTags>
77
<IsPackable>true</IsPackable>
88
</PropertyGroup>
99

0 commit comments

Comments
 (0)