Skip to content

Commit

Permalink
fix(server): add GodotInterop to Nuget
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielMcAssey committed Jan 24, 2025
1 parent 56c0b48 commit 28c1dd8
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 35 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ jobs:

- name: (NuGet) Pack Core Library
run: dotnet pack GLOKON.Baiters.Core/GLOKON.Baiters.Core.csproj --configuration Release --output nupkgs

- name: (NuGet) Pack Core Library
run: dotnet pack GLOKON.Baiters.GodotInterop/GLOKON.Baiters.GodotInterop.csproj --configuration Release --output nupkgs

- name: (NuGet) Publish Core Library
run: dotnet nuget push "nupkgs/*.nupkg" -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
Expand Down
2 changes: 1 addition & 1 deletion GLOKON.Baiters.Core/GLOKON.Baiters.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.1" />
<PackageReference Include="Serilog" Version="4.2.0" />
</ItemGroup>

Expand Down
20 changes: 20 additions & 0 deletions GLOKON.Baiters.GodotInterop/GLOKON.Baiters.GodotInterop.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Title>$(AssemblyName)</Title>
<PackageProjectUrl>https://github.com/DanielMcAssey/baiters-server</PackageProjectUrl>
<Copyright>Copyright Daniel McAssey 2025</Copyright>
<Description>Baiters WebFishing Server Godot Interop Library</Description>
<RepositoryUrl>https://github.com/DanielMcAssey/baiters-server</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>$(AssemblyVersion)</FileVersion>
<Version>$(AssemblyVersion)</Version>
<PackageIcon>package_icon.png</PackageIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DebugSymbols>False</DebugSymbols>
Expand All @@ -12,6 +25,13 @@
<DebugType>None</DebugType>
</PropertyGroup>

<ItemGroup>
<None Include="..\GLOKON.Baiters.Server\Resources\package_icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Serilog" Version="4.2.0" />
</ItemGroup>
Expand Down
18 changes: 9 additions & 9 deletions GLOKON.Baiters.Server/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@
},
"Microsoft.Extensions.DependencyInjection.Abstractions": {
"type": "Transitive",
"resolved": "9.0.0",
"contentHash": "+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg=="
"resolved": "9.0.1",
"contentHash": "Tr74eP0oQ3AyC24ch17N8PuEkrPbD0JqIfENCYqmgKYNOmL8wQKzLJu3ObxTUDrjnn4rHoR1qKa37/eQyHmCDA=="
},
"Microsoft.Extensions.DependencyModel": {
"type": "Transitive",
Expand Down Expand Up @@ -212,17 +212,17 @@
},
"Microsoft.Extensions.Options": {
"type": "Transitive",
"resolved": "9.0.0",
"contentHash": "y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==",
"resolved": "9.0.1",
"contentHash": "nggoNKnWcsBIAaOWHA+53XZWrslC7aGeok+aR+epDPRy7HI7GwMnGZE8yEsL2Onw7kMOHVHwKcsDls1INkNUJQ==",
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0",
"Microsoft.Extensions.Primitives": "9.0.0"
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.1",
"Microsoft.Extensions.Primitives": "9.0.1"
}
},
"Microsoft.Extensions.Primitives": {
"type": "Transitive",
"resolved": "9.0.0",
"contentHash": "N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg=="
"resolved": "9.0.1",
"contentHash": "bHtTesA4lrSGD1ZUaMIx6frU3wyy0vYtTa/hM6gGQu5QNrydObv8T5COiGUWsisflAfmsaFOe9Xvw5NSO99z0g=="
},
"Microsoft.IdentityModel.Abstractions": {
"type": "Transitive",
Expand Down Expand Up @@ -334,7 +334,7 @@
"type": "Project",
"dependencies": {
"GLOKON.Baiters.GodotInterop": "[1.0.0, )",
"Microsoft.Extensions.Options": "[9.0.0, )",
"Microsoft.Extensions.Options": "[9.0.1, )",
"Serilog": "[4.2.0, )"
}
},
Expand Down
5 changes: 1 addition & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 0 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,8 @@
{
"name": "@danielmcassey/baiters-server",
"description": "WebFishing Server with support for custom plugins",
"version": "0.0.0-development",
"author": {
"name": "Daniel McAssey",
"email": "[email protected]"
},
"keywords": [
"webfishing",
"server",
"plugins"
],
"devDependencies": {
"@google/semantic-release-replace-plugin": "^1.2.7",
"@semantic-release/github": "^11.0.1",
"semantic-release-export-data": "^1.1.0"
},
"bugs": {
"url": "https://github.com/DanielMcAssey/baiters-server/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/DanielMcAssey/baiters-server.git"
},
"homepage": "https://github.com/DanielMcAssey/baiters-server",
"license": "MIT",
"private": true
}

0 comments on commit 28c1dd8

Please sign in to comment.