Skip to content

Commit a46c8ed

Browse files
committed
Renamed IsNuget to IsNuGet
1 parent 0810527 commit a46c8ed

File tree

6 files changed

+22
-22
lines changed

6 files changed

+22
-22
lines changed

.github/workflows/publish_ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,39 +42,39 @@ jobs:
4242
- name: Pack FSharp.Data.GraphQL.Shared project
4343
run: |
4444
cd src/FSharp.Data.GraphQL.Shared
45-
dotnet pack --no-build --nologo --configuration Release /p:IsNuget=true -o ../../nuget
45+
dotnet pack --no-build --nologo --configuration Release /p:IsNuGet=true -o ../../nuget
4646
- name: Publish FSharp.Data.GraphQL.Shared project to GitHub
4747
run: |
4848
dotnet nuget push nuget/*Shared*.nupkg -s "github" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
4949
5050
- name: Pack FSharp.Data.GraphQL.Client project
5151
run: |
5252
cd src/FSharp.Data.GraphQL.Client
53-
dotnet pack --no-build --nologo --configuration Release /p:IsNuget=true -o ../../nuget
53+
dotnet pack --no-build --nologo --configuration Release /p:IsNuGet=true -o ../../nuget
5454
- name: Publish FSharp.Data.GraphQL.Client project to GitHub
5555
run: |
5656
dotnet nuget push nuget/*Client*.nupkg -s "github" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
5757
5858
- name: Pack FSharp.Data.GraphQL.Server project
5959
run: |
6060
cd src/FSharp.Data.GraphQL.Server
61-
dotnet pack --no-build --nologo --configuration Release /p:IsNuget=true -o ../../nuget
61+
dotnet pack --no-build --nologo --configuration Release /p:IsNuGet=true -o ../../nuget
6262
- name: Publish FSharp.Data.GraphQL.Server project to GitHub
6363
run: |
6464
dotnet nuget push nuget/*Server*.nupkg -s "github" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
6565
6666
- name: Pack FSharp.Data.GraphQL.Server.Relay project
6767
run: |
6868
cd src/FSharp.Data.GraphQL.Server.Relay
69-
dotnet pack --no-build --nologo --configuration Release /p:IsNuget=true -o ../../nuget
69+
dotnet pack --no-build --nologo --configuration Release /p:IsNuGet=true -o ../../nuget
7070
- name: Publish FSharp.Data.GraphQL.Server.Relay project to GitHub
7171
run: |
7272
dotnet nuget push nuget/*Server.Relay*.nupkg -s "github" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
7373
7474
- name: Pack FSharp.Data.GraphQL.Server.Middleware project
7575
run: |
7676
cd src/FSharp.Data.GraphQL.Server.Middleware
77-
dotnet pack --no-build --nologo --configuration Release /p:IsNuget=true -o ../../nuget
77+
dotnet pack --no-build --nologo --configuration Release /p:IsNuGet=true -o ../../nuget
7878
- name: Publish FSharp.Data.GraphQL.Server.Middleware project to GitHub
7979
run: |
8080
dotnet nuget push nuget/*Server.Middleware*.nupkg -s "github" -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate

.github/workflows/publish_release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,39 +41,39 @@ jobs:
4141
- name: Pack FSharp.Data.GraphQL.Shared project
4242
run: |
4343
cd src/FSharp.Data.GraphQL.Shared
44-
dotnet pack --no-build --nologo --configuration Release /p:IsNuget=true -o ../../nuget
44+
dotnet pack --no-build --nologo --configuration Release /p:IsNuGet=true -o ../../nuget
4545
- name: Publish FSharp.Data.GraphQL.Shared project to NuGet
4646
run: |
4747
dotnet nuget push nuget/*Shared*.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate
4848
4949
- name: Pack FSharp.Data.GraphQL.Client project
5050
run: |
5151
cd src/FSharp.Data.GraphQL.Client
52-
dotnet pack --no-build --nologo --configuration Release /p:IsNuget=true -o ../../nuget
52+
dotnet pack --no-build --nologo --configuration Release /p:IsNuGet=true -o ../../nuget
5353
- name: Publish FSharp.Data.GraphQL.Client project to NuGet
5454
run: |
5555
dotnet nuget push nuget/*Client*.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate
5656
5757
- name: Pack FSharp.Data.GraphQL.Server project
5858
run: |
5959
cd src/FSharp.Data.GraphQL.Server
60-
dotnet pack --no-build --nologo --configuration Release /p:IsNuget=true -o ../../nuget
60+
dotnet pack --no-build --nologo --configuration Release /p:IsNuGet=true -o ../../nuget
6161
- name: Publish FSharp.Data.GraphQL.Server project to NuGet
6262
run: |
6363
dotnet nuget push nuget/*Server*.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate
6464
6565
- name: Pack FSharp.Data.GraphQL.Server.Relay project
6666
run: |
6767
cd src/FSharp.Data.GraphQL.Server.Relay
68-
dotnet pack --no-build --nologo --configuration Release /p:IsNuget=true -o ../../nuget
68+
dotnet pack --no-build --nologo --configuration Release /p:IsNuGet=true -o ../../nuget
6969
- name: Publish FSharp.Data.GraphQL.Server.Relay project to NuGet
7070
run: |
7171
dotnet nuget push nuget/*Server.Relay*.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate
7272
7373
- name: Pack FSharp.Data.GraphQL.Server.Middleware project
7474
run: |
7575
cd src/FSharp.Data.GraphQL.Server.Middleware
76-
dotnet pack --no-build --nologo --configuration Release /p:IsNuget=true -o ../../nuget
76+
dotnet pack --no-build --nologo --configuration Release /p:IsNuGet=true -o ../../nuget
7777
- name: Publish FSharp.Data.GraphQL.Server.Middleware project to NuGet
7878
run: |
7979
dotnet nuget push nuget/*Server.Middleware*.nupkg -k ${{secrets.NUGET_SECRET}} --skip-duplicate

src/FSharp.Data.GraphQL.Client/FSharp.Data.GraphQL.Client.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
</ItemGroup>
3939

4040
<ItemGroup>
41-
<PackageReference Condition="$(IsNuget) != ''" Include="FSharp.Data.GraphQL.Shared" VersionOverride="$(Version)" />
42-
<ProjectReference Condition="$(IsNuget) == ''" Include="..\FSharp.Data.GraphQL.Shared\FSharp.Data.GraphQL.Shared.fsproj" />
41+
<PackageReference Condition="$(IsNuGet) != ''" Include="FSharp.Data.GraphQL.Shared" VersionOverride="$(Version)" />
42+
<ProjectReference Condition="$(IsNuGet) == ''" Include="..\FSharp.Data.GraphQL.Shared\FSharp.Data.GraphQL.Shared.fsproj" />
4343
</ItemGroup>
4444
</Project>

src/FSharp.Data.GraphQL.Server.Middleware/FSharp.Data.GraphQL.Server.Middleware.fsproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
</ItemGroup>
3333

3434
<ItemGroup>
35-
<ProjectReference Condition="$(IsNuget) == ''" Include="..\FSharp.Data.GraphQL.Shared\FSharp.Data.GraphQL.Shared.fsproj" />
36-
<ProjectReference Condition="$(IsNuget) == ''" Include="..\FSharp.Data.GraphQL.Server\FSharp.Data.GraphQL.Server.fsproj" />
37-
<PackageReference Condition="$(IsNuget) != ''" Include="FSharp.Data.GraphQL.Shared" VersionOverride="$(Version)" />
38-
<PackageReference Condition="$(IsNuget) != ''" Include="FSharp.Data.GraphQL.Server" VersionOverride="$(Version)" />
35+
<ProjectReference Condition="$(IsNuGet) == ''" Include="..\FSharp.Data.GraphQL.Shared\FSharp.Data.GraphQL.Shared.fsproj" />
36+
<ProjectReference Condition="$(IsNuGet) == ''" Include="..\FSharp.Data.GraphQL.Server\FSharp.Data.GraphQL.Server.fsproj" />
37+
<PackageReference Condition="$(IsNuGet) != ''" Include="FSharp.Data.GraphQL.Shared" VersionOverride="$(Version)" />
38+
<PackageReference Condition="$(IsNuGet) != ''" Include="FSharp.Data.GraphQL.Server" VersionOverride="$(Version)" />
3939
</ItemGroup>
4040
</Project>

src/FSharp.Data.GraphQL.Server.Relay/FSharp.Data.GraphQL.Server.Relay.fsproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
</ItemGroup>
2020

2121
<ItemGroup>
22-
<ProjectReference Condition="$(IsNuget) == ''" Include="..\FSharp.Data.GraphQL.Shared\FSharp.Data.GraphQL.Shared.fsproj" />
23-
<ProjectReference Condition="$(IsNuget) == ''" Include="..\FSharp.Data.GraphQL.Server\FSharp.Data.GraphQL.Server.fsproj" />
24-
<PackageReference Condition="$(IsNuget) != ''" Include="FSharp.Data.GraphQL.Shared" VersionOverride="$(Version)" />
25-
<PackageReference Condition="$(IsNuget) != ''" Include="FSharp.Data.GraphQL.Server" VersionOverride="$(Version)" />
22+
<ProjectReference Condition="$(IsNuGet) == ''" Include="..\FSharp.Data.GraphQL.Shared\FSharp.Data.GraphQL.Shared.fsproj" />
23+
<ProjectReference Condition="$(IsNuGet) == ''" Include="..\FSharp.Data.GraphQL.Server\FSharp.Data.GraphQL.Server.fsproj" />
24+
<PackageReference Condition="$(IsNuGet) != ''" Include="FSharp.Data.GraphQL.Shared" VersionOverride="$(Version)" />
25+
<PackageReference Condition="$(IsNuGet) != ''" Include="FSharp.Data.GraphQL.Server" VersionOverride="$(Version)" />
2626
</ItemGroup>
2727

2828
</Project>

src/FSharp.Data.GraphQL.Server/FSharp.Data.GraphQL.Server.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@
5050
</ItemGroup>
5151

5252
<ItemGroup>
53-
<PackageReference Condition="$(IsNuget) != ''" Include="FSharp.Data.GraphQL.Shared" VersionOverride="$(Version)" />
54-
<ProjectReference Condition="$(IsNuget) == ''" Include="..\FSharp.Data.GraphQL.Shared\FSharp.Data.GraphQL.Shared.fsproj" />
53+
<PackageReference Condition="$(IsNuGet) != ''" Include="FSharp.Data.GraphQL.Shared" VersionOverride="$(Version)" />
54+
<ProjectReference Condition="$(IsNuGet) == ''" Include="..\FSharp.Data.GraphQL.Shared\FSharp.Data.GraphQL.Shared.fsproj" />
5555
</ItemGroup>
5656

5757
</Project>

0 commit comments

Comments
 (0)