Skip to content

Commit f30b248

Browse files
committed
- Update project parameters.
1 parent 8187efb commit f30b248

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
lines changed

.github/workflows/Master-CodeQL.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# the `language` matrix defined below to confirm you have the correct set of
1010
# supported CodeQL languages.
1111
#
12-
name: "Master-CodeQL"
12+
name: "master-codeql"
1313

1414
on:
1515
push:

.github/workflows/PullRequest-CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: PullRequest-CI
1+
name: pullrequest-ci
22
on:
33
pull_request:
44
types: [opened, reopened, edited, synchronize]

.github/workflows/PullRequest-CodeQL.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# the `language` matrix defined below to confirm you have the correct set of
1010
# supported CodeQL languages.
1111
#
12-
name: "PullRequest-CodeQL"
12+
name: "pullrequest-codeql"
1313

1414
on:
1515
push:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
## Introduction
99
### What is ApiAggregator?
1010
`ApiAggregator` is a .net utility to help combine multiple api requests to return a single aggregated response.
11-
- The framework allows a request to fetch entire aggregated response or partial response by including a subset of configured apis.
11+
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.
1212

1313
### When is ApiAggregator useful?
1414
ApiAggregator is useful in various use cases.

src/ApiAggregator/ApiAggregator.csproj

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,28 @@
44
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<Title>ApiAggregator.Net</Title>
7+
<Title>ApiAggregator</Title>
88
<Authors>CodeShayk</Authors>
99
<Company>CodeShayk</Company>
10-
<Description>.Net utility to aggregate multiple api requests to return a single composite response. </Description>
10+
<Description>.Net utility to combine multiple api requests to return a single aggregated response. </Description>
1111
<PackageIcon>ninja-icon-16.png</PackageIcon>
1212
<PackageReadmeFile>README.md</PackageReadmeFile>
1313
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
1414
<Copyright>Copyright (c) 2024 Code Shayk</Copyright>
15-
<RepositoryType>https://github.com/CodeShayk/ApiAggregator</RepositoryType>
15+
<RepositoryType></RepositoryType>
1616
<PackageTags>api, aggregator, api-aggregator, utility, api-utility, data-aggregator, api-response, api-response-aggregator</PackageTags>
1717
<IncludeSymbols>True</IncludeSymbols>
1818
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1919
<PackageLicenseFile>LICENSE</PackageLicenseFile>
20+
<GenerateDocumentationFile>True</GenerateDocumentationFile>
21+
<PackageProjectUrl>https://github.com/CodeShayk/ApiAggregator/wiki</PackageProjectUrl>
22+
<RepositoryUrl>https://github.com/CodeShayk/ApiAggregator</RepositoryUrl>
23+
<PackageReleaseNotes>v1.0
24+
- Includes core functionality for aggregating apis.</PackageReleaseNotes>
25+
</PropertyGroup>
26+
27+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
28+
<Optimize>True</Optimize>
2029
</PropertyGroup>
2130

2231
<ItemGroup>

0 commit comments

Comments
 (0)