File tree 3 files changed +9
-9
lines changed
3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -2,21 +2,21 @@ name: "Automated Build"
2
2
3
3
on :
4
4
push :
5
- branches : [ main ]
5
+ branches : [main]
6
6
pull_request :
7
- branches : [ main ]
7
+ branches : [main]
8
8
9
9
jobs :
10
10
publish :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- name : " Download source"
14
- uses : actions/checkout@v2
14
+ uses : actions/checkout@v3
15
15
16
16
- name : " Setup .NET"
17
- uses : actions/setup-dotnet@v1
17
+ uses : actions/setup-dotnet@v3
18
18
with :
19
- dotnet-version : 6 .x
19
+ dotnet-version : 7 .x
20
20
21
21
- name : " dotnet restore"
22
22
run : dotnet restore --nologo -r:win-x64
25
25
run : dotnet publish --no-restore --nologo -c:Release -r:win-x64 --no-self-contained -consoleloggerparameters:NoSummary -o:bin/
26
26
27
27
- name : " Upload Artifacts"
28
- uses : actions/upload-artifact@v2
28
+ uses : actions/upload-artifact@v3
29
29
with :
30
30
name : build
31
31
path : bin/VDFparse.exe
Original file line number Diff line number Diff line change 11
11
</ItemGroup >
12
12
13
13
<ItemGroup >
14
- <PackageReference Include =" CommandLineParser" Version =" 2.8.0 " />
14
+ <PackageReference Include =" CommandLineParser" Version =" [ 2.8,] " />
15
15
</ItemGroup >
16
16
17
17
<Import Project =" ../VDFparse.projitems" Label =" Shared" />
Original file line number Diff line number Diff line change 5
5
6
6
<Product>VDFparse</Product>
7
7
<Description>Parses and displays info about Steam .vdf files</Description>
8
- <Version>3.0 </Version>
8
+ <Version>3.1 </Version>
9
9
<Authors>Simon Sawicki (Grub4K)</Authors>
10
10
<Copyright>Copyright (c) 2021-2022 Simon Sawicki</Copyright>
11
11
12
- <TargetFramework>net6 </TargetFramework>
12
+ <TargetFramework>net7 </TargetFramework>
13
13
<LangVersion>latest</LangVersion>
14
14
15
15
<AnalysisMode>Recommended</AnalysisMode>
You can’t perform that action at this time.
0 commit comments