mirror of
https://github.com/EpicMorg/SteamPathsLib.git
synced 2025-03-14 06:10:18 +03:00
Merge branch 'master' into develop
This commit is contained in:
commit
fd3cf4fa22
8
.github/dependabot.yml
vendored
Normal file
8
.github/dependabot.yml
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: nuget
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: daily
|
||||
time: "02:00"
|
||||
open-pull-requests-limit: 10
|
25
.github/workflows/dotnet-core.yml
vendored
Normal file
25
.github/workflows/dotnet-core.yml
vendored
Normal file
@ -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 ./src/EpicMorg.SteamPathsLib/EpicMorg.SteamPathsLib.csproj
|
||||
- name: Build
|
||||
run: dotnet build --configuration Release --no-restore ./src/EpicMorg.SteamPathsLib/EpicMorg.SteamPathsLib.csproj
|
||||
- name: Test
|
||||
run: dotnet test --no-restore --verbosity normal ./src/EpicMorg.SteamPathsLib/EpicMorg.SteamPathsLib.csproj
|
@ -9,15 +9,15 @@
|
||||
<PackageIcon>steam.png</PackageIcon>
|
||||
<PackageProjectUrl>https://github.com/EpicMorg/SteamPathsLib</PackageProjectUrl>
|
||||
<Copyright>Copyright © EpicMorg 2020</Copyright>
|
||||
<AssemblyVersion>1.1.0.5</AssemblyVersion>
|
||||
<FileVersion>1.1.0.5</FileVersion>
|
||||
<Version>1.1.0.5</Version>
|
||||
<AssemblyVersion>1.1.0.6</AssemblyVersion>
|
||||
<FileVersion>1.1.0.6</FileVersion>
|
||||
<Version>1.1.0.6</Version>
|
||||
<Description>Small helper for getting some registry keys of Steam.</Description>
|
||||
<Authors>EpicMorgDev, AurZum, stam, kasthack</Authors>
|
||||
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||
<RepositoryType>git</RepositoryType>
|
||||
<PackageTags>steam epicmorg registry path helper vdf</PackageTags>
|
||||
<PackageReleaseNotes>Code review and optimizations, dotNetCore support</PackageReleaseNotes>
|
||||
<PackageReleaseNotes>Some of fixes</PackageReleaseNotes>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<None Include="steam.png">
|
||||
@ -25,7 +25,7 @@
|
||||
<PackagePath></PackagePath>
|
||||
</None>
|
||||
<PackageReference Include="Microsoft.Win32.Registry" Version="4.7.0" />
|
||||
<PackageReference Include="Gameloop.Vdf" Version="0.5.0" />
|
||||
<PackageReference Include="Gameloop.Vdf" Version="0.6.1" />
|
||||
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
||||
<None Include="steam.ico">
|
||||
<Pack>True</Pack>
|
||||
|
Loading…
x
Reference in New Issue
Block a user