Skip to content

Commit 36f62a9

Browse files
committed
Updated to 2.0.1 to actually able to nuget publish package with net451 support
1 parent 1fe2a22 commit 36f62a9

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
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.0.{build}-{branch}
1+
version: 2.0.1.{build}-{branch}
22
configuration:
33
- Debug
44
- Release

src/NHamcrest.XUnit/NHamcrest.XUnit.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
<TargetFrameworks>netstandard1.5;net451</TargetFrameworks>
55
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
66
<Copyright>Copyright © 2017</Copyright>
7-
<Version Condition="'$(VersionSuffix)' == ''">2.0.0</Version>
8-
<Version Condition="'$(VersionSuffix)' != ''">2.0.0-$(VersionSuffix)</Version>
7+
<Version Condition="'$(VersionSuffix)' == ''">2.0.1</Version>
8+
<Version Condition="'$(VersionSuffix)' != ''">2.0.1-$(VersionSuffix)</Version>
99
<Description>Adapter for xunit for using NHamcrest library</Description>
1010
<Authors>Graham Hay, Algirdas Lašas</Authors>
1111
<PackageLicenseUrl>https://github.com/nhamcrest/NHamcrest/blob/master/LICENCE.txt</PackageLicenseUrl>
1212
<PackageProjectUrl>https://github.com/nhamcrest/NHamcrest</PackageProjectUrl>
1313
<PackageTags>unittesting hamcrest matcher test</PackageTags>
14-
<AssemblyVersion>2.0.0.0</AssemblyVersion>
15-
<FileVersion>2.0.0.0</FileVersion>
14+
<AssemblyVersion>2.0.1.0</AssemblyVersion>
15+
<FileVersion>2.0.1.0</FileVersion>
1616
</PropertyGroup>
1717
<ItemGroup>
1818
<PackageReference Include="xunit.assert" Version="[2.2,3)" />

src/NHamcrest/NHamcrest.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
77
<Copyright>Copyright © 2017</Copyright>
8-
<Version Condition="'$(VersionSuffix)' == ''">2.0.0</Version>
9-
<Version Condition="'$(VersionSuffix)' != ''">2.0.0-$(VersionSuffix)</Version>
8+
<Version Condition="'$(VersionSuffix)' == ''">2.0.1</Version>
9+
<Version Condition="'$(VersionSuffix)' != ''">2.0.1-$(VersionSuffix)</Version>
1010
<Description>.NET port of Hamcrest, a matcher library with some extra matchers</Description>
1111
<Authors>Graham Hay, Algirdas Lašas</Authors>
1212
<Company />
1313
<Product />
1414
<PackageLicenseUrl>https://github.com/nhamcrest/NHamcrest/blob/master/LICENCE.txt</PackageLicenseUrl>
1515
<PackageProjectUrl>https://github.com/nhamcrest/NHamcrest</PackageProjectUrl>
1616
<PackageTags>unittesting hamcrest matcher test</PackageTags>
17-
<AssemblyVersion>2.0.0.0</AssemblyVersion>
18-
<FileVersion>2.0.0.0</FileVersion>
17+
<AssemblyVersion>2.0.1.0</AssemblyVersion>
18+
<FileVersion>2.0.1.0</FileVersion>
1919
</PropertyGroup>
2020
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
2121
<NoWarn>1701;1702;1705;1591</NoWarn>

0 commit comments

Comments
 (0)