Skip to content

Commit 88c956c

Browse files
committed
Update xunit to 2.3.0 and update package version to 2.0.1-rc
1 parent 8510eed commit 88c956c

File tree

6 files changed

+34
-10
lines changed

6 files changed

+34
-10
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.0.1-alpha.{build}+{branch}
1+
version: 2.0.1-rc.{build}+{branch}
22
init:
33
- git config --global core.autocrlf true
44
clone_depth: 1

CommandLineUtils.sln

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 15
3-
VisualStudioVersion = 15.0.26730.12
3+
VisualStudioVersion = 15.0.27004.2002
44
MinimumVisualStudioVersion = 15.0.26124.0
55
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{95D4B35E-0A21-4D64-8BAF-27DD6C019FC5}"
66
EndProject
@@ -14,6 +14,23 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{60B2
1414
EndProject
1515
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HelloWorld", "samples\HelloWorld\HelloWorld.csproj", "{71521E54-158D-45D7-8746-4905E6B3EB21}"
1616
EndProject
17+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "files", "files", "{509D6286-77FA-49C1-9EC6-7461DBE79536}"
18+
ProjectSection(SolutionItems) = preProject
19+
.appveyor.yml = .appveyor.yml
20+
.editorconfig = .editorconfig
21+
.gitattributes = .gitattributes
22+
.gitignore = .gitignore
23+
build.cmd = build.cmd
24+
build.ps1 = build.ps1
25+
Directory.Build.props = Directory.Build.props
26+
Directory.Build.targets = Directory.Build.targets
27+
LICENSE.txt = LICENSE.txt
28+
NOTICE.txt = NOTICE.txt
29+
NuGet.config = NuGet.config
30+
README.md = README.md
31+
version.props = version.props
32+
EndProjectSection
33+
EndProject
1734
Global
1835
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1936
Debug|Any CPU = Debug|Any CPU

src/CommandLineUtils/McMaster.Extensions.CommandLineUtils.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ McMaster.Extensions.CommandLineUtils.ArgumentEscaper
1717
<IncludeSource>true</IncludeSource>
1818
</PropertyGroup>
1919

20-
<ItemGroup>
21-
<PackageReference Condition="'$(TargetFramework)'=='netstandard1.6'" Include="System.AppContext" Version="4.3.0" />
22-
<PackageReference Condition="'$(TargetFramework)'=='netstandard1.6'" Include="System.Diagnostics.Process" Version="4.3.0" />
23-
<PackageReference Condition="'$(TargetFramework)'=='netstandard1.6'" Include="System.Threading.Thread" Version="4.3.0" />
20+
<ItemGroup Condition="'$(TargetFramework)'=='netstandard1.6'">
21+
<PackageReference Include="System.AppContext" Version="4.3.0" />
22+
<PackageReference Include="System.Diagnostics.Process" Version="4.3.0" />
23+
<PackageReference Include="System.Threading.Thread" Version="4.3.0" />
2424
</ItemGroup>
2525

2626
</Project>

test/CommandLineUtils.Tests/McMaster.Extensions.CommandLineUtils.Tests.csproj

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,13 @@
1111

1212
<ItemGroup>
1313
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
14-
<PackageReference Include="Moq" Version="4.7.99" />
15-
<PackageReference Include="xunit" Version="2.3.0-beta5-build3769" />
16-
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.0-beta5-build3769" />
14+
<PackageReference Include="Moq" Version="4.7.142" />
15+
<PackageReference Include="xunit" Version="2.3.0" />
16+
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.0" />
17+
</ItemGroup>
18+
19+
<ItemGroup>
20+
<None Update="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
1721
</ItemGroup>
1822

1923
</Project>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"methodDisplay": "method"
3+
}

version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<VersionPrefix>2.0.1</VersionPrefix>
4-
<VersionSuffix>alpha</VersionSuffix>
4+
<VersionSuffix>rc</VersionSuffix>
55
<PackageVersion Condition="'$(APPVEYOR_REPO_TAG)' == 'true' AND '$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix)</PackageVersion>
66

77
<BuildNumber Condition=" '$(BuildNumber)' == '' ">$(APPVEYOR_BUILD_NUMBER)</BuildNumber>

0 commit comments

Comments
 (0)