Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/version_change.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v4

- name: '📝 Change Version'
uses: vers-one/dotnet-project-version-updater@v1.6
uses: vers-one/dotnet-project-version-updater@v1.7
with:
file: "WithFlyingColors.csproj"
version: ${{ github.event.inputs.version }}
Expand Down
14 changes: 7 additions & 7 deletions WithFlyingColors.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Godot.NET.Sdk/4.4.1">
<Project Sdk="Godot.NET.Sdk/4.5.0-beta.1">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<EnableDynamicLoading>true</EnableDynamicLoading>
Expand Down Expand Up @@ -29,22 +29,22 @@
<ItemGroup Condition=" '$(Configuration)' == 'Debug' or '$(Configuration)' == 'ExportDebug' ">
<!-- Test dependencies go here! -->
<!-- Dependencies added here will not be included in release builds. -->
<PackageReference Include="Chickensoft.GoDotTest" Version="1.5.10" />
<PackageReference Include="Chickensoft.GoDotTest" Version="1.6.18" />
<!-- Used to drive test scenes when testing visual code -->
<PackageReference Include="GodotTestDriver" Version="2.1.0" />
<!-- Bring your own assertion library for tests! -->
<!-- We're using Shouldly for this example, but you can use anything. -->
<PackageReference Include="Shouldly" Version="4.2.1" />
<PackageReference Include="Shouldly" Version="4.3.0" />
<!-- LightMock is a mocking library that works without reflection. -->
<PackageReference Include="LightMock.Generator" Version="1.2.2" />
<!-- LightMoq is a Chickensoft package which makes it more like Moq. -->
<PackageReference Include="LightMoq" Version="0.1.0" />
</ItemGroup>
<ItemGroup>
<!-- Production dependencies go here! -->
<PackageReference Include="Chickensoft.GodotNodeInterfaces" Version="2.2.22" />
<PackageReference Include="Chickensoft.Introspection" Version="1.7.0" />
<PackageReference Include="Chickensoft.Introspection.Generator" Version="1.7.0" PrivateAssets="all" OutputItemType="analyzer" />
<PackageReference Include="Chickensoft.AutoInject" Version="2.3.0" PrivateAssets="all" />
<PackageReference Include="Chickensoft.GodotNodeInterfaces" Version="2.4.16" />
<PackageReference Include="Chickensoft.Introspection" Version="1.8.0" />
<PackageReference Include="Chickensoft.Introspection.Generator" Version="1.8.0" PrivateAssets="all" OutputItemType="analyzer" />
<PackageReference Include="Chickensoft.AutoInject" Version="2.7.8" PrivateAssets="all" />
</ItemGroup>
</Project>
4 changes: 2 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"sdk": {
"version": "8.0.401",
"version": "8.0.411",
"rollForward": "major"
},
"msbuild-sdks": {
"Godot.NET.Sdk": "4.3.0"
"Godot.NET.Sdk": "4.5.0-beta.1"
}
}
Loading