Skip to content

Commit

Permalink
fix: EnemyAI to EnemyAPI for publish stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Hamunii committed Aug 26, 2024
1 parent c047bf5 commit 854aff1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
{
"label": "Dry-run package test",
"type": "shell",
"command": "dotnet tool run tcli build --config-path ./artifacts/tspublish/Core/thunderstore.toml; dotnet tool run tcli build --config-path ./artifacts/tspublish/EnemyAI/thunderstore.toml",
"command": "dotnet tool run tcli build --config-path ./artifacts/tspublish/Core/thunderstore.toml; dotnet tool run tcli build --config-path ./artifacts/tspublish/EnemyAPI/thunderstore.toml",
"problemMatcher": []
}
]
Expand Down
File renamed without changes
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[package]
#Edit this in the CSPROJ instead, the workflow will automate copying
#it here for you
description="The EnemyAI Module of ContentLib."
description="The EnemyAPI Module of ContentLib."

#Change this to true if your mod has any NSFW content. Please follow the rules
#on image and text content on your listing or your package may be removed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<LastUsedPlatform>Any CPU</LastUsedPlatform>
<LaunchSiteAfterPublish>False</LaunchSiteAfterPublish>
<MSDeployPublishMethod>FileSystem</MSDeployPublishMethod>
<PublishDir>$(SolutionDir)\artifacts\tspublish\EnemyAI\dist\plugins</PublishDir>
<PublishDir>$(SolutionDir)\artifacts\tspublish\EnemyAPI\dist\plugins</PublishDir>
<PublishFramework>$(TargetFramework)</PublishFramework>
<PublishProtocol>FileSystem</PublishProtocol>
<SkipACLAttribute>True</SkipACLAttribute>
Expand Down Expand Up @@ -43,14 +43,14 @@
</ItemGroup>

<Copy
DestinationFolder="$(SolutionDir)\artifacts\tspublish\EnemyAI\dist"
DestinationFolder="$(SolutionDir)\artifacts\tspublish\EnemyAPI\dist"
SourceFiles="@(PackageFiles)"
/>

<Exec
Command='dotnet tcli publish --package-name "$(Product)" --package-namespace "$(Authors)" --package-version "$(PACKAGE_VERSION)"'
ConsoleToMSBuild="true"
WorkingDirectory="$(SolutionDir)\artifacts\tspublish\EnemyAI"
WorkingDirectory="$(SolutionDir)\artifacts\tspublish\EnemyAPI"
/>
</Target>

Expand Down

0 comments on commit 854aff1

Please sign in to comment.