feat: Adds generators project and AsyncPaginationExtension generator (#2537)

This commit is contained in:
Nick Floyd
2022-08-11 01:34:16 -05:00
committed by GitHub
parent 5386257a3f
commit 1e3fa1d770
11 changed files with 1085 additions and 880 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -18,23 +18,23 @@
<PackageTags>GitHub API Octokit linqpad-samples dotnetcore</PackageTags>
<Copyright>Copyright GitHub 2017</Copyright>
<LangVersion>9</LangVersion>
<Nullable>enable</Nullable>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<NetStandardImplicitPackageVersion>2.0.0</NetStandardImplicitPackageVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<NetStandardImplicitPackageVersion>2.0.0</NetStandardImplicitPackageVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="All" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Octokit\Octokit.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Octokit\Octokit.csproj" />
</ItemGroup>
</Project>