-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathNetFabric.Hyperlinq.Immutable.csproj
More file actions
55 lines (48 loc) · 3.1 KB
/
NetFabric.Hyperlinq.Immutable.csproj
File metadata and controls
55 lines (48 loc) · 3.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
<PackageId>NetFabric.Hyperlinq.Immutable</PackageId>
<Title>NetFabric.Hyperlinq.Immutable</Title>
<Description> High performance LINQ implementation with minimal heap allocations. Supports all collections in System.Collections.Immutable.</Description>
<Version>1.0.0-beta01</Version>
<PackageIcon>Icon.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageTags>netfabric, hyperlinq, linq, enumeration, extensions, performance</PackageTags>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- <TreatWarningsAsErrors>true</TreatWarningsAsErrors> -->
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
</ItemGroup>
<ItemGroup>
<None Include="..\Icon.png" Pack="true" PackagePath="" />
<None Include="..\LICENSE" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NetFabric.Hyperlinq\NetFabric.Hyperlinq.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Collections.Immutable" Version="5.0.0" />
<PackageReference Include="Nullable" Version="1.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Meziantou.Analyzer" Version="1.0.656">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Compile Include="..\NetFabric.Hyperlinq\Conversion\AsValueEnumerable\Bindings\System\Collections\Immutable\ImmutableArrayExtensions.cs" Link="ImmutableArrayExtensions.cs" />
<Compile Include="..\NetFabric.Hyperlinq\Conversion\AsValueEnumerable\Bindings\System\Collections\Immutable\ImmutableDictionaryExtensions.cs" Link="ImmutableDictionaryExtensions.cs" />
<Compile Include="..\NetFabric.Hyperlinq\Conversion\AsValueEnumerable\Bindings\System\Collections\Immutable\ImmutableHashSetExtensions.cs" Link="ImmutableHashSetExtensions.cs" />
<Compile Include="..\NetFabric.Hyperlinq\Conversion\AsValueEnumerable\Bindings\System\Collections\Immutable\ImmutableListExtensions.cs" Link="ImmutableListExtensions.cs" />
<Compile Include="..\NetFabric.Hyperlinq\Conversion\AsValueEnumerable\Bindings\System\Collections\Immutable\ImmutableQueueExtensions.cs" Link="ImmutableQueueExtensions.cs" />
<Compile Include="..\NetFabric.Hyperlinq\Conversion\AsValueEnumerable\Bindings\System\Collections\Immutable\ImmutableSortedDictionaryExtensions.cs" Link="ImmutableSortedDictionaryExtensions.cs" />
<Compile Include="..\NetFabric.Hyperlinq\Conversion\AsValueEnumerable\Bindings\System\Collections\Immutable\ImmutableStackExtensions.cs" Link="ImmutableStackExtensions.cs" />
</ItemGroup>
</Project>