From df130b7ead16ce9cd26fcd443e10d22dd3e1567a Mon Sep 17 00:00:00 2001 From: AlexZ Date: Thu, 11 Jun 2020 19:21:35 +0300 Subject: [PATCH 1/5] Update EpicMorg.SteamPathsLib.csproj --- src/EpicMorg.SteamPathsLib/EpicMorg.SteamPathsLib.csproj | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/EpicMorg.SteamPathsLib/EpicMorg.SteamPathsLib.csproj b/src/EpicMorg.SteamPathsLib/EpicMorg.SteamPathsLib.csproj index 0d4b000..ff4cd74 100644 --- a/src/EpicMorg.SteamPathsLib/EpicMorg.SteamPathsLib.csproj +++ b/src/EpicMorg.SteamPathsLib/EpicMorg.SteamPathsLib.csproj @@ -9,15 +9,15 @@ steam.png https://github.com/EpicMorg/SteamPathsLib Copyright © EpicMorg 2020 - 1.1.0.5 - 1.1.0.5 - 1.1.0.5 + 1.1.0.6 + 1.1.0.6 + 1.1.0.6 Small helper for getting some registry keys of Steam. EpicMorgDev, AurZum, stam, kasthack MIT git steam epicmorg registry path helper vdf - Code review and optimizations, dotNetCore support + Some of fixes From 1daa6bb5adbe4b456c09500287b91c5b4f274a69 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Fri, 18 Sep 2020 16:54:09 +0000 Subject: [PATCH 2/5] Create Dependabot config file --- .github/dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..2a97bb2 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,8 @@ +version: 2 +updates: +- package-ecosystem: nuget + directory: "/" + schedule: + interval: daily + time: "02:00" + open-pull-requests-limit: 10 From 428ba714e601e9340525172a758bb2addc6aa006 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Fri, 18 Sep 2020 16:54:57 +0000 Subject: [PATCH 3/5] Bump Gameloop.Vdf from 0.5.0 to 0.6.1 Bumps [Gameloop.Vdf](https://github.com/shravan2x/Gameloop.Vdf) from 0.5.0 to 0.6.1. - [Release notes](https://github.com/shravan2x/Gameloop.Vdf/releases) - [Commits](https://github.com/shravan2x/Gameloop.Vdf/compare/v0.5.0...v0.6.1) Signed-off-by: dependabot-preview[bot] --- src/EpicMorg.SteamPathsLib/EpicMorg.SteamPathsLib.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EpicMorg.SteamPathsLib/EpicMorg.SteamPathsLib.csproj b/src/EpicMorg.SteamPathsLib/EpicMorg.SteamPathsLib.csproj index ff4cd74..bbb778a 100644 --- a/src/EpicMorg.SteamPathsLib/EpicMorg.SteamPathsLib.csproj +++ b/src/EpicMorg.SteamPathsLib/EpicMorg.SteamPathsLib.csproj @@ -25,7 +25,7 @@ - + True From 5f9e2a0542009c96c1b5b306d4a74ecb75ce985c Mon Sep 17 00:00:00 2001 From: STAM Date: Fri, 18 Sep 2020 20:02:18 +0300 Subject: [PATCH 4/5] Create dotnet-core.yml --- .github/workflows/dotnet-core.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/dotnet-core.yml diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml new file mode 100644 index 0000000..347cb80 --- /dev/null +++ b/.github/workflows/dotnet-core.yml @@ -0,0 +1,25 @@ +name: .NET Core + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Setup .NET Core + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 3.1.301 + - name: Install dependencies + run: dotnet restore + - name: Build + run: dotnet build --configuration Release --no-restore + - name: Test + run: dotnet test --no-restore --verbosity normal From 44c80975995b257ba30b6374bade0ab196146975 Mon Sep 17 00:00:00 2001 From: STAM Date: Fri, 18 Sep 2020 20:18:12 +0300 Subject: [PATCH 5/5] Update dotnet-core.yml --- .github/workflows/dotnet-core.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 347cb80..0ab403e 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -18,8 +18,8 @@ jobs: with: dotnet-version: 3.1.301 - name: Install dependencies - run: dotnet restore + run: dotnet restore ./src/EpicMorg.SteamPathsLib/EpicMorg.SteamPathsLib.csproj - name: Build - run: dotnet build --configuration Release --no-restore + run: dotnet build --configuration Release --no-restore ./src/EpicMorg.SteamPathsLib/EpicMorg.SteamPathsLib.csproj - name: Test - run: dotnet test --no-restore --verbosity normal + run: dotnet test --no-restore --verbosity normal ./src/EpicMorg.SteamPathsLib/EpicMorg.SteamPathsLib.csproj