Skip to content

Commit

Permalink
3.0.0-beta27
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmada committed Jan 25, 2021
1 parent 44d9e3b commit ade1766
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 32 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<PropertyGroup>
<Authors>Antao Almada</Authors>
<Copyright>Copyright 2019-2020 Antao Almada</Copyright>
<Copyright>Copyright 2019-2021 Antao Almada</Copyright>
<LangVersion>9.0</LangVersion>
<Features>strict</Features>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019-2020 Antao Almada
Copyright (c) 2019-2021 Antao Almada

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

<PropertyGroup>
<TargetFrameworks>net461;net5.0;netstandard2.0;netstandard2.1</TargetFrameworks>
<PackageId>NetFabric.Hyperlinq.Interfaces</PackageId>
<Title>NetFabric.Hyperlinq.Interfaces</Title>
<Description>Base interfaces for high performance enumeration.</Description>
<Version>2.1.0</Version>
<PackageId>NetFabric.Hyperlinq.Abstractions</PackageId>
<Title>NetFabric.Hyperlinq.Abstractions</Title>
<Description>Abstractions for high performance enumeration.</Description>
<Version>1.0.0</Version>
<PackageIcon>Icon.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageTags>netfabric, hyperlinq, linq, enumeration, performance</PackageTags>
<PackageTags>netfabric, hyperlinq, abstractions, linq, enumeration, performance</PackageTags>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageReleaseNotes>Added async interfaces.</PackageReleaseNotes>
<PackageReleaseNotes></PackageReleaseNotes>
<Nullable>enable</Nullable>
</PropertyGroup>

Expand All @@ -34,19 +34,4 @@
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="5.0.0" />
</ItemGroup>

<ItemGroup>
<Compile Update="IFunction.cs">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Compile>
<Compile Update="FunctionWrapper.cs">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Compile>
<Compile Update="IAsyncFunction.cs">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Compile>
<Compile Update="AsyncFunctionWrapper.cs">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Compile>
</ItemGroup>

</Project>
14 changes: 7 additions & 7 deletions NetFabric.Hyperlinq.sln
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
README.md = README.md
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetFabric.Hyperlinq.Interfaces", "NetFabric.Hyperlinq.Interfaces\NetFabric.Hyperlinq.Interfaces.csproj", "{5D186C2C-056C-4146-98AF-137BA449570A}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetFabric.Hyperlinq.Benchmarks", "NetFabric.Hyperlinq.Benchmarks\NetFabric.Hyperlinq.Benchmarks.csproj", "{02EE275F-6E2D-444A-AB1F-9BCD02DEA204}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetFabric.Hyperlinq.SourceGenerator", "NetFabric.Hyperlinq.SourceGenerator\NetFabric.Hyperlinq.SourceGenerator.csproj", "{B8C004E3-F59E-4017-8781-C0F99B61BDEF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NetFabric.Hyperlinq.SourceGenerator.UnitTests", "NetFabric.Hyperlinq.SourceGenerator.UnitTests\NetFabric.Hyperlinq.SourceGenerator.UnitTests.csproj", "{12F96462-A2F8-4FBE-B4F5-29BA6A6DB4D9}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetFabric.Hyperlinq.SourceGenerator.UnitTests", "NetFabric.Hyperlinq.SourceGenerator.UnitTests\NetFabric.Hyperlinq.SourceGenerator.UnitTests.csproj", "{12F96462-A2F8-4FBE-B4F5-29BA6A6DB4D9}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetFabric.Hyperlinq.Abstractions", "NetFabric.Hyperlinq.Abstractions\NetFabric.Hyperlinq.Abstractions.csproj", "{6981E761-E698-437D-AF63-0E80844B7D41}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -42,10 +42,6 @@ Global
{FE0CFD9E-7685-4595-8691-5364228722E9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FE0CFD9E-7685-4595-8691-5364228722E9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FE0CFD9E-7685-4595-8691-5364228722E9}.Release|Any CPU.Build.0 = Release|Any CPU
{5D186C2C-056C-4146-98AF-137BA449570A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5D186C2C-056C-4146-98AF-137BA449570A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5D186C2C-056C-4146-98AF-137BA449570A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5D186C2C-056C-4146-98AF-137BA449570A}.Release|Any CPU.Build.0 = Release|Any CPU
{02EE275F-6E2D-444A-AB1F-9BCD02DEA204}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{02EE275F-6E2D-444A-AB1F-9BCD02DEA204}.Debug|Any CPU.Build.0 = Debug|Any CPU
{02EE275F-6E2D-444A-AB1F-9BCD02DEA204}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -58,6 +54,10 @@ Global
{12F96462-A2F8-4FBE-B4F5-29BA6A6DB4D9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{12F96462-A2F8-4FBE-B4F5-29BA6A6DB4D9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{12F96462-A2F8-4FBE-B4F5-29BA6A6DB4D9}.Release|Any CPU.Build.0 = Release|Any CPU
{6981E761-E698-437D-AF63-0E80844B7D41}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6981E761-E698-437D-AF63-0E80844B7D41}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6981E761-E698-437D-AF63-0E80844B7D41}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6981E761-E698-437D-AF63-0E80844B7D41}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
4 changes: 2 additions & 2 deletions NetFabric.Hyperlinq/NetFabric.Hyperlinq.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@
<PackageId>NetFabric.Hyperlinq</PackageId>
<Title>NetFabric.Hyperlinq</Title>
<Description> High performance LINQ implementation with minimal heap allocations. Supports enumerables, async enumerables, arrays, Memory and Span.</Description>
<Version>3.0.0-beta26</Version>
<Version>3.0.0-beta27</Version>
<PackageIcon>Icon.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageTags>netfabric, hyperlinq, linq, enumeration, extensions, performance</PackageTags>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<LangVersion>preview</LangVersion>
<Nullable>enable</Nullable>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<!-- <TreatWarningsAsErrors>true</TreatWarningsAsErrors> -->
Expand All @@ -35,6 +34,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\NetFabric.Hyperlinq.Abstractions\NetFabric.Hyperlinq.Abstractions.csproj" />
<ProjectReference Include="..\NetFabric.Hyperlinq.Interfaces\NetFabric.Hyperlinq.Interfaces.csproj" />
<ProjectReference Include="..\NetFabric.Hyperlinq.SourceGenerator\NetFabric.Hyperlinq.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>
Expand Down

0 comments on commit ade1766

Please sign in to comment.