Skip to content

Commit 7488573

Browse files
committed
chore(actions): add dotnet 9.0.100
chore: removed global.json
1 parent c6b29c2 commit 7488573

File tree

25 files changed

+14
-99
lines changed

25 files changed

+14
-99
lines changed

Diff for: .github/workflows/build.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
uses: actions/[email protected]
3838
with:
3939
dotnet-version: |
40+
9.0.100-preview.6.24328.19
4041
8.0.301
4142
7.0.404
4243
- name: Restore dependencies
@@ -61,6 +62,7 @@ jobs:
6162
uses: actions/[email protected]
6263
with:
6364
dotnet-version: |
65+
9.0.100-preview.6.24328.19
6466
8.0.301
6567
7.0.404
6668
- name: Restore Packages
@@ -73,4 +75,4 @@ jobs:
7375
uses: actions/[email protected]
7476
with:
7577
name: DisCatSharp
76-
path: ./artifacts/
78+
path: ./artifacts/

Diff for: .github/workflows/codeql-analysis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
uses: actions/setup-dotnet@v4
4444
with:
4545
dotnet-version: |
46+
9.0.100-preview.6.24328.19
4647
8.0.301
4748
7.0.404
4849
- name: Restore dependencies

Diff for: .github/workflows/documentation.yml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
uses: actions/[email protected]
2323
with:
2424
dotnet-version: |
25+
9.0.100-preview.6.24328.19
2526
8.0.301
2627
7.0.403
2728
- name: Git fetch unshallow

Diff for: .github/workflows/documentation_test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
uses: actions/[email protected]
2424
with:
2525
dotnet-version: |
26+
9.0.100-preview.6.24328.19
2627
8.0.301
2728
7.0.403
2829
- name: Install DocFX

Diff for: .github/workflows/internal-release.yml

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
uses: actions/[email protected]
2626
with:
2727
dotnet-version: |
28+
9.0.100-preview.6.24328.19
2829
8.0.301
2930
7.0.404
3031
- name: Restore dependencies

Diff for: .github/workflows/release.yml

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ jobs:
5656
uses: actions/[email protected]
5757
with:
5858
dotnet-version: |
59+
9.0.100-preview.6.24328.19
5960
8.0.301
6061
7.0.404
6162
- name: Set outputs

Diff for: DisCatSharp.ApplicationCommands/global.json

-6
This file was deleted.

Diff for: DisCatSharp.Archive/DisCatSharp.LavalinkV1/global.json

-6
This file was deleted.

Diff for: DisCatSharp.Attributes/global.json

-6
This file was deleted.

Diff for: DisCatSharp.CommandsNext/global.json

-6
This file was deleted.

Diff for: DisCatSharp.Common/global.json

-6
This file was deleted.

Diff for: DisCatSharp.Configuration/global.json

-6
This file was deleted.

Diff for: DisCatSharp.Experimental/global.json

-6
This file was deleted.

Diff for: DisCatSharp.Hosting.DependencyInjection/global.json

-6
This file was deleted.

Diff for: DisCatSharp.Hosting/global.json

-6
This file was deleted.

Diff for: DisCatSharp.Interactivity/global.json

-6
This file was deleted.

Diff for: DisCatSharp.Targets/Library.targets

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
44
<PropertyGroup>
55
<OutputType>Library</OutputType>
6-
<TargetFrameworks>net7.0;net8.0</TargetFrameworks>
6+
<TargetFrameworks>net7.0;net8.0;net9.0</TargetFrameworks>
77
<LangVersion>latest</LangVersion>
88
<Nullable>enable</Nullable>
99
</PropertyGroup>

Diff for: DisCatSharp.Targets/Package.targets

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
<PropertyGroup>
55
<NoWarn>1591;NU5128;DV2001;NETSDK1188;CS8600;CS8625;CS8601;CS8604;CS0219;CS8618;CS8619;CS8597;CS8603;CS8602;CS8765;CS8632;CS8633;CS8714;CS8629;CS8767;CS8620</NoWarn>
66
<LangVersion>latest</LangVersion>
7+
<NuGetAuditSuppress>true</NuGetAuditSuppress>
8+
<NuGetAudit>false</NuGetAudit>
79
</PropertyGroup>
810
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
911
<Optimize>False</Optimize>

Diff for: DisCatSharp.Targets/TestProject.targets

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
44
<PropertyGroup>
55
<OutputType>Library</OutputType>
6-
<TargetFrameworks>net7.0;net8.0</TargetFrameworks>
6+
<TargetFrameworks>net7.0;net8.0;net9.0</TargetFrameworks>
77
<LangVersion>latest</LangVersion>
88
<Nullable>enable</Nullable>
9+
<NuGetAuditSuppress>true</NuGetAuditSuppress>
10+
<NuGetAudit>false</NuGetAudit>
911
</PropertyGroup>
1012
<PropertyGroup>
1113
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>

Diff for: DisCatSharp.Tests/DisCatSharp.Configuration.Tests/global.json

-6
This file was deleted.

Diff for: DisCatSharp.Tests/DisCatSharp.EventHandlers.Tests/global.json

-6
This file was deleted.

Diff for: DisCatSharp.Tests/DisCatSharp.Hosting.Tests/global.json

-6
This file was deleted.

Diff for: DisCatSharp.VoiceNext/global.json

-6
This file was deleted.

Diff for: DisCatSharp/global.json

-6
This file was deleted.

Diff for: global.json

-6
This file was deleted.

0 commit comments

Comments
 (0)