Skip to content

Commit 0413169

Browse files
author
Joanna May
authored
Merge pull request #124 from xodial/xodial/net8-downgrade
Downgrade to latest net8 to stay synced with GodotSharp
2 parents c1423c5 + a39dc3d commit 0413169

File tree

8 files changed

+8
-9
lines changed

8 files changed

+8
-9
lines changed

.github/workflows/release.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
- name: 🧾 Checkout
2424
uses: actions/checkout@v4
2525
with:
26-
token: ${{ secrets.GH_BASIC }}
2726
lfs: true
2827
submodules: "recursive"
2928
fetch-depth: 0 # So we can get all tags.

Chickensoft.GeneratorTester/Chickensoft.GeneratorTester.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<ItemGroup>
1212
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" PrivateAssets="all" />
13-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" PrivateAssets="all" />
13+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0" PrivateAssets="all" />
1414
<PackageReference Include="IsExternalInit" Version="1.0.3">
1515
<PrivateAssets>all</PrivateAssets>
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>

Chickensoft.LogicBlocks.Analyzers/Chickensoft.LogicBlocks.Analyzers.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
<!-- The following libraries include the types we need -->
4141
<ItemGroup>
42-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" PrivateAssets="all" />
42+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0" PrivateAssets="all" />
4343
</ItemGroup>
4444

4545
<!-- This ensures the library will be packaged as an analyzer when we use `dotnet pack` -->

Chickensoft.LogicBlocks.CodeFixes/Chickensoft.LogicBlocks.CodeFixes.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
<!-- The following libraries include the types we need -->
4141
<ItemGroup>
42-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.10.0" PrivateAssets="all" />
42+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.11.0" PrivateAssets="all" />
4343
</ItemGroup>
4444

4545
<!-- This ensures the library will be packaged as an analyzer when we use `dotnet pack` -->

Chickensoft.LogicBlocks.DiagramGenerator.Tests/Chickensoft.LogicBlocks.DiagramGenerator.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
</PackageReference>
3838
<PackageReference Include="Shouldly" Version="4.2.1" />
3939
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" PrivateAssets="all" />
40-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" PrivateAssets="all" />
40+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0" PrivateAssets="all" />
4141
</ItemGroup>
4242

4343
<ItemGroup>

Chickensoft.LogicBlocks.DiagramGenerator/Chickensoft.LogicBlocks.DiagramGenerator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<!-- The following libraries include the source generator interfaces and types we need -->
4747
<ItemGroup>
4848
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" PrivateAssets="all" />
49-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" PrivateAssets="all" />
49+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0" PrivateAssets="all" />
5050
<PackageReference Include="IsExternalInit" Version="1.0.3" PrivateAssets="all">
5151
</PackageReference>
5252
</ItemGroup>

Chickensoft.LogicBlocks/Chickensoft.LogicBlocks.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<PackageReference Include="System.Text.Json" Version="9.0.0" />
5757
<PackageReference Include="Chickensoft.Collections" Version="1.12.6" />
5858
<PackageReference Include="Chickensoft.Introspection" Version="2.2.0" />
59-
<PackageReference Include="Chickensoft.Serialization" Version="2.1.0" />
59+
<PackageReference Include="Chickensoft.Serialization" Version="2.2.0" />
6060
</ItemGroup>
6161

6262
<!-- Include analyzers as part of logic blocks -->

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"rollForward": "latestMinor",
4-
"version": "9.0.101"
3+
"version": "8.0.404",
4+
"rollForward": "latestMinor"
55
}
66
}

0 commit comments

Comments
 (0)