Skip to content

Commit ceb8dc3

Browse files
committed
fix ci
1 parent 619f788 commit ceb8dc3

File tree

4 files changed

+4
-10
lines changed

4 files changed

+4
-10
lines changed

.github/workflows/dotnet-ci.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ jobs:
1212
uses: actions/setup-dotnet@v3
1313
with:
1414
dotnet-version: '8.0.x'
15-
dotnet-quality: 'preview'
1615
- name: Restore dependencies
1716
run: dotnet restore ./src/WPF/GeneralUpdate.Tool.sln
1817
- name: build

src/WPF/GeneralUpdate.Packet/GeneralUpdate.Packet.csproj

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
<PropertyGroup>
44
<OutputType>WinExe</OutputType>
5-
<TargetFramework>net8.0-windows</TargetFramework>
5+
<TargetFramework>net8.0-windows7.0</TargetFramework>
66
<Nullable>enable</Nullable>
77
<ImplicitUsings>enable</ImplicitUsings>
88
<UseWPF>true</UseWPF>
9+
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
910
</PropertyGroup>
1011

1112
<ItemGroup>
@@ -19,10 +20,6 @@
1920
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
2021
</ItemGroup>
2122

22-
<ItemGroup>
23-
<ProjectReference Include="..\GeneralUpdate.Bowl\GeneralUpdate.Bowl.csproj" />
24-
</ItemGroup>
25-
2623
<ItemGroup>
2724
<Resource Include="Resource\GeneralUpdate_h.png" />
2825
</ItemGroup>

src/WPF/GeneralUpdate.Packet/MainWindow.xaml.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using GeneralUpdate.Bowl;
2-
using GeneralUpdate.Packet.ViewModels;
1+
using GeneralUpdate.Packet.ViewModels;
32
using System.Windows;
43

54
namespace GeneralUpdate.Packet

src/WPF/GeneralUpdate.Packet/ViewModels/MainViewModel.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using GeneralUpdate.Bowl;
2-
using GeneralUpdate.Packet.Modules;
1+
using GeneralUpdate.Packet.Modules;
32
using GeneralUpdate.Packet.MVVM;
43
using System.Collections.ObjectModel;
54
using System.Windows;

0 commit comments

Comments
 (0)