-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/1.1.0' into production
- Loading branch information
Showing
5 changed files
with
60 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,6 @@ TestResult.formatted.xml | |
*.userprefs | ||
*.orig | ||
*.directory | ||
packages/*/* | ||
*.nupkg | ||
packages/ | ||
.vs/ | ||
*.DotSettings.user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,34 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard1.2</TargetFrameworks> | ||
<PackOnBuild>true</PackOnBuild> | ||
<Authors>CSF Software Ltd</Authors> | ||
<TargetFrameworks>netstandard2.0;netstandard1.2;net45</TargetFrameworks> | ||
<Authors>craigfowler</Authors> | ||
|
||
<PackageId>CSF.CollectionComparers</PackageId> | ||
<Title>Collection comparers</Title> | ||
<Description>Implementations of the generic IEqualityComparer<T> which are used for comparing generic IEnumerable<T> objects. These equality comparers represent various comparison strategies such as list/sequence, set and bag equality. | ||
|
||
In each case, effort has been made to use the "best" algorithm available for equality-testing.</Description> | ||
<ReleaseVersion>1.0.0</ReleaseVersion> | ||
<ReleaseVersion>1.1.0</ReleaseVersion> | ||
<Version>$(ReleaseVersion)</Version> | ||
<PackageVersion>$(ReleaseVersion)</PackageVersion> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<Copyright>Copyright 2020 - CSF Software Limited</Copyright> | ||
<PackageProjectUrl>https://github.com/csf-dev/CSF.CollectionComparers</PackageProjectUrl> | ||
<RepositoryUrl>$(PackageProjectUrl)</RepositoryUrl> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>..\CSF-Software-OSS.snk</AssemblyOriginatorKeyFile> | ||
<PackageId>CSF.CollectionComparers</PackageId> | ||
<PackageVersion>1.0.0</PackageVersion> | ||
<Summary>Classes implementing IEqualityComparer<IEnumerable<T>> providing strategies for comparing collections of items/objects.</Summary> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DocumentationFile>bin\Debug\netstandard1.2\CSF.CollectionComparers.xml</DocumentationFile> | ||
<DocumentationFile>bin\Debug\$(TargetFramework)\CSF.CollectionComparers.xml</DocumentationFile> | ||
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DocumentationFile>bin\Release\netstandard1.2\CSF.CollectionComparers.xml</DocumentationFile> | ||
<DocumentationFile>bin\Release\$(TargetFramework)\CSF.CollectionComparers.xml</DocumentationFile> | ||
<DebugType></DebugType> | ||
<DefineConstants>TRACE;RELEASE;NETSTANDARD;NETSTANDARD1_2</DefineConstants> | ||
<DocumentationFile>bin\Release\netstandard1.2\CSF.CollectionComparers.xml</DocumentationFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="NuGet.Build.Packaging" Version="0.2.2" /> | ||
</ItemGroup> | ||
<Import Project="..\Tools\EnableMultiTargetingWithMono.targets" /> | ||
</Project> |