Skip to content

Commit

Permalink
Bump versions for v3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Grub4K committed Dec 14, 2022
1 parent fccb01a commit aec7cef
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/automated-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@ name: "Automated Build"

on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: "Download source"
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: "Setup .NET"
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.x
dotnet-version: 7.x

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

- name: "Upload Artifacts"
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: build
path: bin/VDFparse.exe
2 changes: 1 addition & 1 deletion VDFparse.Cli/VDFparse.Cli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.8.0" />
<PackageReference Include="CommandLineParser" Version="[2.8,]" />
</ItemGroup>

<Import Project="../VDFparse.projitems" Label="Shared" />
Expand Down
4 changes: 2 additions & 2 deletions VDFparse.projitems
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

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

<TargetFramework>net6</TargetFramework>
<TargetFramework>net7</TargetFramework>
<LangVersion>latest</LangVersion>

<AnalysisMode>Recommended</AnalysisMode>
Expand Down

0 comments on commit aec7cef

Please sign in to comment.