Skip to content
Merged
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
3 changes: 0 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@ updates:
prefix: .NET SDK
labels: [dependencies]
assignees: [beauchama]
ignore:
- dependency-name: '*'
update-types: ['version-update:semver-major', 'version-update:semver-minor']

- package-ecosystem: github-actions
target-branch: develop
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<PropertyGroup Label="Custom properties">
<QuackRoot>$(MSBuildThisFileDirectory)</QuackRoot>
<DefaultNetVersion>net10.0</DefaultNetVersion>
<DefaultNetVersion>net11.0</DefaultNetVersion>
<IncludeBinaries>false</IncludeBinaries>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion KappaDuck.Quack/KappaDuck.Quack.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Configuration">
<TargetFrameworks>net9.0;net10.0</TargetFrameworks>
<TargetFrameworks>net9.0;net10.0;net11.0</TargetFrameworks>
<IsAotCompatible>true</IsAotCompatible>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down
5 changes: 3 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"sdk": {
"version": "10.0.103",
"rollForward": "latestPatch"
"version": "11.0.100-preview.1",
"rollForward": "latestFeature",
"allowPrerelease": true
},
"test": {
"runner": "Microsoft.Testing.Platform"
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Quack! :duck: ![Static Badge](https://img.shields.io/badge/.NET-9.0%2C%2010.0-512BD4) [![NuGet Version](https://img.shields.io/nuget/vpre/KappaDuck.Quack?style=flat&label=stable)][NuGet]

# Quack! :duck: ![Static Badge](https://img.shields.io/badge/.NET-9.0,%2010.0,%2011.0-512BD4) [![NuGet Version](https://img.shields.io/nuget/vpre/KappaDuck.Quack?style=flat&label=stable)][NuGet]

A modern .NET game framework built on SDL
---
Expand Down Expand Up @@ -90,6 +89,7 @@ You can build Quack! from source and running quick experiments by creating C# fi

- [.NET 9.0 SDK](https://dotnet.microsoft.com/download/dotnet/9.0)
- [.NET 10.0 SDK](https://dotnet.microsoft.com/download/dotnet/10.0)
- [.NET 11.0 SDK](https://dotnet.microsoft.com/download/dotnet/11.0)

> The SDK includes everything needed to build and run .NET applications.

Expand Down