mirror of
https://github.com/EpicMorg/SteamPathsLib.git
synced 2025-03-20 01:00:17 +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>
|
<PackageIcon>steam.png</PackageIcon>
|
||||||
<PackageProjectUrl>https://github.com/EpicMorg/SteamPathsLib</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/EpicMorg/SteamPathsLib</PackageProjectUrl>
|
||||||
<Copyright>Copyright © EpicMorg 2020</Copyright>
|
<Copyright>Copyright © EpicMorg 2020</Copyright>
|
||||||
<AssemblyVersion>1.1.0.5</AssemblyVersion>
|
<AssemblyVersion>1.1.0.6</AssemblyVersion>
|
||||||
<FileVersion>1.1.0.5</FileVersion>
|
<FileVersion>1.1.0.6</FileVersion>
|
||||||
<Version>1.1.0.5</Version>
|
<Version>1.1.0.6</Version>
|
||||||
<Description>Small helper for getting some registry keys of Steam.</Description>
|
<Description>Small helper for getting some registry keys of Steam.</Description>
|
||||||
<Authors>EpicMorgDev, AurZum, stam, kasthack</Authors>
|
<Authors>EpicMorgDev, AurZum, stam, kasthack</Authors>
|
||||||
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||||
<RepositoryType>git</RepositoryType>
|
<RepositoryType>git</RepositoryType>
|
||||||
<PackageTags>steam epicmorg registry path helper vdf</PackageTags>
|
<PackageTags>steam epicmorg registry path helper vdf</PackageTags>
|
||||||
<PackageReleaseNotes>Code review and optimizations, dotNetCore support</PackageReleaseNotes>
|
<PackageReleaseNotes>Some of fixes</PackageReleaseNotes>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="steam.png">
|
<None Include="steam.png">
|
||||||
@ -25,7 +25,7 @@
|
|||||||
<PackagePath></PackagePath>
|
<PackagePath></PackagePath>
|
||||||
</None>
|
</None>
|
||||||
<PackageReference Include="Microsoft.Win32.Registry" Version="4.7.0" />
|
<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" />
|
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
||||||
<None Include="steam.ico">
|
<None Include="steam.ico">
|
||||||
<Pack>True</Pack>
|
<Pack>True</Pack>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user