ci changes

This commit is contained in:
Ben Adams
2017-11-12 12:40:13 +01:00
parent e7a2f46ff6
commit d4bf1639c7
6 changed files with 80 additions and 6 deletions

View File

@@ -6,6 +6,8 @@
<Description>High performance understanding for stack traces (Make error logs more productive)</Description>
<Authors>ben_a_adams</Authors>
<RepositoryUrl>https://github.com/benaadams/Ben.Demystifier</RepositoryUrl>
<PackageProjectUrl>https://github.com/benaadams/Ben.Demystifier</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/benaadams/Ben.Demystifier/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryType>git</RepositoryType>
<IncludeSymbols>true</IncludeSymbols>
<IncludeSource>true</IncludeSource>
@@ -14,7 +16,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net46</TargetFrameworks>
<LangVersion>7.2</LangVersion>
<LangVersion>7.1</LangVersion>
</PropertyGroup>
<ItemGroup>

View File

@@ -8,7 +8,7 @@ namespace System.Collections.Generic.Enumerable
public static EnumerableIList<T> Create<T>(IList<T> list) => new EnumerableIList<T>(list);
}
public readonly struct EnumerableIList<T> : IEnumerableIList<T>, IList<T>
public struct EnumerableIList<T> : IEnumerableIList<T>, IList<T>
{
private readonly IList<T> _list;