Skip to content

Commit

Permalink
Update authors, add minver (#672)
Browse files Browse the repository at this point in the history
  • Loading branch information
josephwoodward committed Sep 20, 2020
1 parent d56b318 commit 2cf4c7f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/Shouldly.Tests/Shouldly.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">$(TargetFrameworks);net48</TargetFrameworks>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">$(TargetFramework);net48</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Optimize>false</Optimize>
<DebugType Condition=" '$(OS)' == 'Windows_NT' ">full</DebugType>
Expand Down
8 changes: 5 additions & 3 deletions src/Shouldly/Shouldly.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Optimize>false</Optimize>
<DebugSymbols>true</DebugSymbols>
Expand All @@ -9,9 +9,8 @@
<AssemblyOriginatorKeyFile>sn.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>

<Description>Shouldly - Assertion framework for .NET. The way asserting *Should* be</Description>
<Authors>Jake Ginnivan, Joseph Woodward</Authors>
<Authors>Jake Ginnivan, Joseph Woodward, Simon Cropp</Authors>
<PackageTags>test;unit;testing;TDD;AAA;should;testunit;rspec;assert;assertion;framework</PackageTags>
<PackageIcon>assets/logo_128x128.png</PackageIcon>
<PackageProjectUrl>https://github.com/shouldly/shouldly</PackageProjectUrl>
Expand All @@ -22,12 +21,15 @@
<GeneratePackageOnBuild Condition="$(Configuration) == 'Release'">true</GeneratePackageOnBuild>
<PackageOutputPath>..\..\nugets</PackageOutputPath>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<MinVerTagPrefix>v</MinVerTagPrefix>
<Version>$(PackageVersion)</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DiffEngine" Version="6.0.0" />
<Content Include="build.targets" PackagePath="build\Shouldly.targets" />
<Content Include="buildMultiTargeting.targets" PackagePath="buildMultiTargeting\Shouldly.targets" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" Condition="$(Configuration) == 'Release'" />
<PackageReference Include="MinVer" Version="2.3.0" PrivateAssets="all" />
<PackageReference Include="System.Memory" Version="4.5.4" />
<PackageReference Include="System.Dynamic.Runtime" Version="4.3.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
Expand Down

0 comments on commit 2cf4c7f

Please sign in to comment.