Skip to content

Commit 088fed7

Browse files
committed
alternate package id for testing
1 parent c77d513 commit 088fed7

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/dotnet.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,12 +122,10 @@ jobs:
122122
- name: Build
123123
shell: pwsh
124124
run: |
125-
# TODO: Revert package id after testing
126-
dotnet build --property:PackageId=The.Other.JADNC.Package --no-restore --configuration Release --version-suffix=$env:PACKAGE_VERSION_SUFFIX
125+
dotnet build --no-restore --configuration Release --version-suffix=$env:PACKAGE_VERSION_SUFFIX
127126
- name: Test
128127
run: |
129-
# TODO: Revert package id after testing
130-
dotnet test --property:PackageId=The.Other.JADNC.Package --no-build --configuration Release --collect:"XPlat Code Coverage" --logger "GitHubActions;summary.includeSkippedTests=true" -- RunConfiguration.CollectSourceInformation=true DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.DeterministicReport=true
128+
dotnet test --no-build --configuration Release --collect:"XPlat Code Coverage" --logger "GitHubActions;summary.includeSkippedTests=true" -- RunConfiguration.CollectSourceInformation=true DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.DeterministicReport=true
131129
- name: Upload coverage to codecov.io
132130
if: matrix.os == 'ubuntu-latest'
133131
uses: codecov/codecov-action@v3

src/JsonApiDotNetCore.Annotations/JsonApiDotNetCore.Annotations.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
</PropertyGroup>
99

1010
<PropertyGroup>
11+
<PackageId>TestGithubActionsPleaseIgnore.Annotations</PackageId>
1112
<VersionPrefix>$(JsonApiDotNetCoreVersionPrefix)</VersionPrefix>
1213
<PackageTags>jsonapidotnetcore;jsonapi;json:api;dotnet;asp.net;rest;web-api</PackageTags>
1314
<Description>Annotations for JsonApiDotNetCore, a framework for building JSON:API compliant REST APIs using ASP.NET and Entity Framework Core.</Description>

src/JsonApiDotNetCore.SourceGenerators/JsonApiDotNetCore.SourceGenerators.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
</PropertyGroup>
1111

1212
<PropertyGroup>
13+
<PackageId>TestGithubActionsPleaseIgnore.SourceGenerators</PackageId>
1314
<VersionPrefix>$(JsonApiDotNetCoreVersionPrefix)</VersionPrefix>
1415
<PackageTags>jsonapidotnetcore;jsonapi;json:api;dotnet;asp.net;rest;web-api</PackageTags>
1516
<Description>Source generators for JsonApiDotNetCore, a framework for building JSON:API compliant REST APIs using ASP.NET and Entity Framework Core.</Description>

src/JsonApiDotNetCore/JsonApiDotNetCore.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
</PropertyGroup>
77

88
<PropertyGroup>
9+
<PackageId>TestGithubActionsPleaseIgnore</PackageId>
910
<VersionPrefix>$(JsonApiDotNetCoreVersionPrefix)</VersionPrefix>
1011
<PackageTags>jsonapidotnetcore;jsonapi;json:api;dotnet;asp.net;rest;web-api</PackageTags>
1112
<Description>A framework for building JSON:API compliant REST APIs using ASP.NET and Entity Framework Core. Includes support for Atomic Operations. The ultimate goal of this library is to eliminate as much boilerplate as possible by offering out-of-the-box features such as sorting, filtering and pagination. You just need to focus on defining the resources and implementing your custom business logic. This library has been designed around dependency injection making extensibility incredibly easy.</Description>

0 commit comments

Comments
 (0)