chore: set version to 0.1.0.0, remove meta.json from release ZIPs

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Filtik 2026-07-02 23:45:07 +02:00
parent a2f3756d84
commit 010fdee711
2 changed files with 9 additions and 0 deletions

View File

@ -25,6 +25,9 @@ jobs:
with:
dotnet-target: "net9.0"
- name: Remove meta.json from artifact
run: zip -d "${{ steps.jprm.outputs.artifact }}" meta.json 2>/dev/null || true
- uses: actions/upload-artifact@v3
with:
name: build-net9
@ -53,6 +56,9 @@ jobs:
with:
dotnet-target: "net10.0"
- name: Remove meta.json from artifact
run: zip -d "${{ steps.jprm.outputs.artifact }}" meta.json 2>/dev/null || true
- uses: actions/upload-artifact@v3
with:
name: build-net10

View File

@ -6,6 +6,9 @@
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>Jellyfin.Plugin.AutoBackup</AssemblyName>
<RootNamespace>Jellyfin.Plugin.AutoBackup</RootNamespace>
<Version>0.1.0.0</Version>
<AssemblyVersion>0.1.0.0</AssemblyVersion>
<FileVersion>0.1.0.0</FileVersion>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
<PublishDir>$(MSBuildProjectDirectory)\publish\$(TargetFramework)</PublishDir>