Skip to content

Commit 7a5f5ff

Browse files
Bump Microsoft.NET.Test.Sdk from 16.2.0 to 16.7.1 (#75)
* Bump Microsoft.NET.Test.Sdk from 16.2.0 to 16.7.1 Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 16.2.0 to 16.7.1. - [Release notes](https://github.com/microsoft/vstest/releases) - [Commits](microsoft/vstest@v16.2.0...v16.7.1) Signed-off-by: dependabot[bot] <support@github.com> * Update dependencies * Update build tools * Add missing build.config file Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias Beerens <3512339+Matthiee@users.noreply.github.com>
1 parent 90af194 commit 7a5f5ff

File tree

9 files changed

+183
-307
lines changed

9 files changed

+183
-307
lines changed

CommandLineParser.Tests/CommandLineParser.Tests.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp2.0</TargetFramework>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77

@@ -16,10 +16,10 @@
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
1717
</PackageReference>
1818
<PackageReference Include="Divergic.Logging.Xunit" Version="3.5.0" />
19-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
19+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
2020
<PackageReference Include="Moq" Version="4.14.5" />
2121
<PackageReference Include="xunit" Version="2.4.1" />
22-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
22+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
2323
<PrivateAssets>all</PrivateAssets>
2424
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2525
</PackageReference>

CommandLineParser.sln

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1414
.gitignore = .gitignore
1515
appveyor.yml = appveyor.yml
1616
build.cake = build.cake
17+
build.config = build.config
1718
LICENSE = LICENSE
1819
README.md = README.md
1920
EndProjectSection
@@ -28,7 +29,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FluentValidationsExtensions
2829
EndProject
2930
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{23D6692A-8461-4253-A00A-9F0BE4E2384B}"
3031
EndProject
31-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestAssembly", "Tests\TestAssembly\TestAssembly.csproj", "{017DFFFD-EC78-420D-A3CA-0049ABD1E2A2}"
32+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestAssembly", "Tests\TestAssembly\TestAssembly.csproj", "{017DFFFD-EC78-420D-A3CA-0049ABD1E2A2}"
3233
EndProject
3334
Global
3435
GlobalSection(SolutionConfigurationPlatforms) = preSolution

Extensions/Tests/FluentValidationsExtensions.Tests/FluentValidationsExtensions.Tests.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp2.0</TargetFramework>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
@@ -12,9 +12,9 @@
1212
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
1313
</PackageReference>
1414
<PackageReference Include="FluentValidation" Version="9.2.2" />
15-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
15+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
1616
<PackageReference Include="xunit" Version="2.4.1" />
17-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
17+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
1818
<PrivateAssets>all</PrivateAssets>
1919
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2020
</PackageReference>

SampleApp/SampleApp.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.0</TargetFramework>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
66
<LangVersion>7.3</LangVersion>
77
</PropertyGroup>
88

appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Operating system (build VM template)
2-
os: Visual Studio 2017
2+
os: Visual Studio 2019
33

4-
version: 0.1.{build}
4+
version: 0.4.{build}
55

66
environment:
77
GH_PKG_TOKEN:

build.cake

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#tool "nuget:?package=xunit.runner.console&version=2.2.0"
1+
#tool "nuget:?package=xunit.runner.console&version=2.4.1"
22
#tool nuget:?package=Codecov
3-
#addin "nuget:?package=Cake.Codecov&version=0.5.0""
3+
#addin "nuget:?package=Cake.Codecov&version=0.9.1""
44
#addin nuget:?package=Cake.Coverlet
55
///////////////////////////////////////////////////////////////////////////////
66
// ARGUMENTS

build.config

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env bash
2+
CAKE_VERSION=0.38.5
3+
DOTNET_VERSION=3.1.402

0 commit comments

Comments
 (0)