Skip to content

Commit

Permalink
Merge branch 'release/1.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregor Sindl committed Feb 18, 2021
2 parents 2c31831 + c68129e commit f48662f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>net40;netstandard2.0</TargetFrameworks>
<Title>Input Simulator Standard</Title>
<Authors>Michael Noonan, Theodoros Chatzigiannakis, Gregor Sindl</Authors>
<Copyright>Copyright 2009-2019</Copyright>
Expand All @@ -27,7 +27,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand Down
3 changes: 1 addition & 2 deletions src/GregsStack.InputSimulatorStandard/InputBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;

using Native;

Expand All @@ -18,7 +17,7 @@ internal class InputBuilder : IEnumerable<Input>
/// </summary>
private readonly List<Input> inputList;

private static readonly IReadOnlyList<VirtualKeyCode> ExtendedKeys = new List<VirtualKeyCode>
private static readonly List<VirtualKeyCode> ExtendedKeys = new List<VirtualKeyCode>
{
VirtualKeyCode.NUMPAD_RETURN,
VirtualKeyCode.MENU,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="altcover" Version="6.1.708" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.12" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
<PackageReference Include="Moq" Version="4.13.0" />
<PackageReference Include="altcover" Version="8.0.815" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.30" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Include="Moq" Version="4.16.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion tools/NuGet.Tools/NuGet.Tools.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Codecov" Version="1.7.2" />
<PackageReference Include="Codecov" Version="1.13.0" />
</ItemGroup>

</Project>

0 comments on commit f48662f

Please sign in to comment.