Skip to content

Commit

Permalink
- Update project parameters.
Browse files Browse the repository at this point in the history
  • Loading branch information
NinjaRocks committed Nov 6, 2024
1 parent 8187efb commit f30b248
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Master-CodeQL.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "Master-CodeQL"
name: "master-codeql"

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/PullRequest-CI.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PullRequest-CI
name: pullrequest-ci
on:
pull_request:
types: [opened, reopened, edited, synchronize]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/PullRequest-CodeQL.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "PullRequest-CodeQL"
name: "pullrequest-codeql"

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
## Introduction
### What is ApiAggregator?
`ApiAggregator` is a .net utility to help combine multiple api requests to return a single aggregated response.
- The framework allows a request to fetch entire aggregated response or partial response by including a subset of configured apis.
The framework allows fetching the whole of aggregated response or a partial response based on the list of configured apis included in the aggregator request.

### When is ApiAggregator useful?
ApiAggregator is useful in various use cases.
Expand Down
15 changes: 12 additions & 3 deletions src/ApiAggregator/ApiAggregator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,28 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Title>ApiAggregator.Net</Title>
<Title>ApiAggregator</Title>
<Authors>CodeShayk</Authors>
<Company>CodeShayk</Company>
<Description>.Net utility to aggregate multiple api requests to return a single composite response. </Description>
<Description>.Net utility to combine multiple api requests to return a single aggregated response. </Description>
<PackageIcon>ninja-icon-16.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Copyright>Copyright (c) 2024 Code Shayk</Copyright>
<RepositoryType>https://github.com/CodeShayk/ApiAggregator</RepositoryType>
<RepositoryType></RepositoryType>
<PackageTags>api, aggregator, api-aggregator, utility, api-utility, data-aggregator, api-response, api-response-aggregator</PackageTags>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<PackageProjectUrl>https://github.com/CodeShayk/ApiAggregator/wiki</PackageProjectUrl>
<RepositoryUrl>https://github.com/CodeShayk/ApiAggregator</RepositoryUrl>
<PackageReleaseNotes>v1.0
- Includes core functionality for aggregating apis.</PackageReleaseNotes>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Optimize>True</Optimize>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit f30b248

Please sign in to comment.