Compare commits

...

2 Commits

Author SHA1 Message Date
Anna e38506781c
chore: set version to 1.0.0 2022-04-17 01:57:11 -04:00
Anna 5b39a0202a
chore: fix linux paths 2022-04-17 01:52:03 -04:00
3 changed files with 40 additions and 1 deletions

22
.build.yml Normal file
View File

@ -0,0 +1,22 @@
image: fedora/latest
packages:
- dotnet
- wget
- unzip
- zip
tasks:
- download-dalamud: |
mkdir dalamud
cd dalamud
wget https://github.com/goatcorp/dalamud-distrib/raw/main/latest.zip
unzip latest.zip
rm latest.zip
- build-plugin: |
cd TheHeartOfTheParty/TheHeartOfTheParty
dotnet build -c Release -p:IsCI=true
- package: |
cd TheHeartOfTheParty/TheHeartOfTheParty/bin/Release/net5.0-windows
zip -r release.zip TheHeartOfTheParty
artifacts:
- TheHeartOfTheParty/TheHeartOfTheParty/bin/Release/net5.0-windows/TheHeartOfTheParty/latest.zip
- TheHeartOfTheParty/TheHeartOfTheParty/bin/Release/net5.0-windows/release.zip

View File

@ -6,11 +6,16 @@
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>preview</LangVersion>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<PropertyGroup>
<Dalamud>$(AppData)\XIVLauncher\addon\Hooks\dev</Dalamud>
<!-- <Dalamud>$(DALAMUD_HOME)</Dalamud>-->
</PropertyGroup>
<PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))'">
<Dalamud>$(DALAMUD_HOME)</Dalamud>
</PropertyGroup>
<PropertyGroup Condition="'$(IsCI)' == 'true'">
@ -40,4 +45,8 @@
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="DalamudPackager" Version="2.1.7" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,8 @@
name: The Heart of the Party
author: ascclemens
punchline: Set your character's title - now with Searchalin!
description: |-
The Heart of the Party is a remake of the in-game title picker, but it
supports searching. Note that it doesn't add a command to set your title; use
the built-in /title command instead.
repo_url: https://git.annaclemens.io/ascclemens/TheHeartOfTheParty