Skip to content

Commit 92e597e

Browse files
authored
Merge pull request #24 from WB-Tooling/min-ver
min ver
2 parents 9e4f6a1 + 657caa3 commit 92e597e

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ permissions:
1111
contents: read
1212

1313
jobs:
14-
validate-version:
15-
name: 🧐 Validate Version
16-
uses: ./.github/workflows/validate-version-job.yml
17-
if: startsWith(github.ref, 'refs/tags/')
1814

1915
build:
2016
name: 🏗️ Build Nuget Package
@@ -34,7 +30,7 @@ jobs:
3430
publish-nuget:
3531
name: 📦 Publish Nuget Package
3632
uses: ./.github/workflows/publish-nuget-job.yml
37-
needs: [test, validate-version]
33+
needs: [test]
3834
if: startsWith(github.ref, 'refs/tags/')
3935
with:
4036
dotnet-version: "10.0.x"

Directory.Build.props

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,6 @@
2222
<RepositoryType>git</RepositoryType>
2323
</PropertyGroup>
2424

25-
<!-- ╭──────────────────────────────────────────────────────────────────────╮
26-
│ Version │
27-
╰──────────────────────────────────────────────────────────────────────╯ -->
28-
<PropertyGroup>
29-
<Version>1.0.0-preview.4</Version>
30-
</PropertyGroup>
31-
3225
<!-- ╭──────────────────────────────────────────────────────────────────────╮
3326
│ Nullability Settings │
3427
╰──────────────────────────────────────────────────────────────────────╯ -->

Directory.Packages.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
│ 3rd-Party Packages │
1818
╰──────────────────────────────────────────────────────────────────────╯ -->
1919
<ItemGroup>
20+
<PackageVersion Include="MinVer" Version="[7, 8)" />
2021
</ItemGroup>
2122

2223
<!-- ╭──────────────────────────────────────────────────────────────────────╮

src/WB.Logging.LogSinks.Base.csproj

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,16 @@
2222
</PackageReference>
2323
</ItemGroup>
2424

25+
<!-- ╭──────────────────────────────────────────────────────────────────────╮
26+
│ MinVer Settings │
27+
╰──────────────────────────────────────────────────────────────────────╯ -->
28+
<ItemGroup>
29+
<PackageReference Include="MinVer">
30+
<PrivateAssets>all</PrivateAssets>
31+
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
32+
</PackageReference>
33+
</ItemGroup>
34+
2535
<!-- ╭──────────────────────────────────────────────────────────────────────╮
2636
│ Source Link. │
2737
╰──────────────────────────────────────────────────────────────────────╯ -->

0 commit comments

Comments
 (0)