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:
parent
a2f3756d84
commit
010fdee711
|
|
@ -25,6 +25,9 @@ jobs:
|
||||||
with:
|
with:
|
||||||
dotnet-target: "net9.0"
|
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
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: build-net9
|
name: build-net9
|
||||||
|
|
@ -53,6 +56,9 @@ jobs:
|
||||||
with:
|
with:
|
||||||
dotnet-target: "net10.0"
|
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
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: build-net10
|
name: build-net10
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,9 @@
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<AssemblyName>Jellyfin.Plugin.AutoBackup</AssemblyName>
|
<AssemblyName>Jellyfin.Plugin.AutoBackup</AssemblyName>
|
||||||
<RootNamespace>Jellyfin.Plugin.AutoBackup</RootNamespace>
|
<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>
|
<GenerateDocumentationFile>false</GenerateDocumentationFile>
|
||||||
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
|
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
|
||||||
<PublishDir>$(MSBuildProjectDirectory)\publish\$(TargetFramework)</PublishDir>
|
<PublishDir>$(MSBuildProjectDirectory)\publish\$(TargetFramework)</PublishDir>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue