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
4 changes: 2 additions & 2 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Set up .NET
uses: actions/setup-dotnet@v6
with:
dotnet-version: 9.0.x
dotnet-version: 10.0.x

- name: Restore
run: dotnet restore $env:PROJECT_PATH
Expand Down Expand Up @@ -189,4 +189,4 @@ jobs:
release_args+=(--prerelease)
fi

gh "${release_args[@]}"
gh "${release_args[@]}"
2 changes: 1 addition & 1 deletion CompactGUI.Core/CompactGUI.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net9.0-windows</TargetFramework>
<TargetFramework>net10.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions CompactGUI.CoreVB/CompactGUI.CoreVB.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<RootNamespace>CompactGUI.CoreVB</RootNamespace>
<TargetFramework>net9.0-windows</TargetFramework>
<TargetFramework>net10.0-windows</TargetFramework>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand All @@ -17,7 +17,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="MeasurePerformance.Fody" Version="1.3.1" />
<PackageReference Include="System.Management" Version="9.0.5" />
<PackageReference Include="System.Management" Version="10.0.10" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions CompactGUI.Logging/CompactGUI.Logging.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand All @@ -11,7 +11,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.5" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.10" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions CompactGUI.Watcher/CompactGUI.Watcher.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<RootNamespace>CompactGUI.Watcher</RootNamespace>
<TargetFramework>net9.0-windows</TargetFramework>
<TargetFramework>net10.0-windows</TargetFramework>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand All @@ -12,7 +12,7 @@
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="IridiumIO.MVVM.VBSourceGenerators" Version="0.6.1" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.5" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.10" />
</ItemGroup>

<ItemGroup>
Expand Down
9 changes: 5 additions & 4 deletions CompactGUI/CompactGUI.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
<PropertyGroup>

<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows</TargetFramework>
<TargetFramework>net10.0-windows</TargetFramework>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<RootNamespace>CompactGUI</RootNamespace>
<UseWPF>true</UseWPF>
<OptionStrict>Off</OptionStrict>
Expand Down Expand Up @@ -55,9 +56,9 @@
<PackageReference Include="FunctionalConverters" Version="0.1.0" />
<PackageReference Include="Gameloop.Vdf" Version="0.6.2" />
<PackageReference Include="IridiumIO.MVVM.VBSourceGenerators" Version="0.6.1" PrivateAssets="All" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.7" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.7" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.7" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="10.0.10" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.10" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.10" />
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.135" />
<PackageReference Include="Serilog.Extensions.Logging.File" Version="3.0.0" />
<PackageReference Include="ValueConverters" Version="3.1.22" />
Expand Down
3 changes: 1 addition & 2 deletions CompactGUI/Models/CompressableFolders/SteamFolder.vb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ Imports System
Imports System.IO
Imports System.Net.Http
Imports System.Threading.Tasks
Imports System.Windows.Forms
Imports System.Reflection
Imports System.Runtime.InteropServices

Expand Down Expand Up @@ -115,4 +114,4 @@ Public Class SteamFolder : Inherits CompressableFolder
End Function


End Class
End Class
Loading