Skip to content

Commit aec7cef

Browse files
committed
Bump versions for v3.1
1 parent fccb01a commit aec7cef

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/automated-build.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@ name: "Automated Build"
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [main]
66
pull_request:
7-
branches: [ main ]
7+
branches: [main]
88

99
jobs:
1010
publish:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: "Download source"
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v3
1515

1616
- name: "Setup .NET"
17-
uses: actions/setup-dotnet@v1
17+
uses: actions/setup-dotnet@v3
1818
with:
19-
dotnet-version: 6.x
19+
dotnet-version: 7.x
2020

2121
- name: "dotnet restore"
2222
run: dotnet restore --nologo -r:win-x64
@@ -25,7 +25,7 @@ jobs:
2525
run: dotnet publish --no-restore --nologo -c:Release -r:win-x64 --no-self-contained -consoleloggerparameters:NoSummary -o:bin/
2626

2727
- name: "Upload Artifacts"
28-
uses: actions/upload-artifact@v2
28+
uses: actions/upload-artifact@v3
2929
with:
3030
name: build
3131
path: bin/VDFparse.exe

VDFparse.Cli/VDFparse.Cli.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</ItemGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="CommandLineParser" Version="2.8.0" />
14+
<PackageReference Include="CommandLineParser" Version="[2.8,]" />
1515
</ItemGroup>
1616

1717
<Import Project="../VDFparse.projitems" Label="Shared" />

VDFparse.projitems

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55

66
<Product>VDFparse</Product>
77
<Description>Parses and displays info about Steam .vdf files</Description>
8-
<Version>3.0</Version>
8+
<Version>3.1</Version>
99
<Authors>Simon Sawicki (Grub4K)</Authors>
1010
<Copyright>Copyright (c) 2021-2022 Simon Sawicki</Copyright>
1111

12-
<TargetFramework>net6</TargetFramework>
12+
<TargetFramework>net7</TargetFramework>
1313
<LangVersion>latest</LangVersion>
1414

1515
<AnalysisMode>Recommended</AnalysisMode>

0 commit comments

Comments
 (0)