Skip to content
Open
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
dotnet-version: 10.0.x

- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This is a major update with a lot of changes:
* New UI
* New features
* Much more stable
* Based on .NET 8
* Based on .NET 10
* Three separate versions for UIA2 and UIA3 and default with choosing on startup


Expand Down
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Task("Package")
ReleaseNotes = new[] { "https://github.com/FlaUI/FlaUInspect/blob/main/CHANGELOG.md" },
Files = new[] {
new ChocolateyNuSpecContent {
Source = @$"src\FlaUInspect\bin\{configuration}\net8.0-windows10.0.19041.0\**", Target = "tools"
Source = @$"src\FlaUInspect\bin\{configuration}\net10.0-windows10.0.19041.0\**", Target = "tools"
},
new ChocolateyNuSpecContent {
Source = "LICENSE", Target = @"tools\LICENSE"
Expand Down
2 changes: 1 addition & 1 deletion src/FlaUInspect/FlaUInspect.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
<TargetFramework>net10.0-windows10.0.19041.0</TargetFramework>
<UseWPF>true</UseWPF>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down