Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore: update csproj config #323

Merged
merged 1 commit into from
May 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions Jellyfin.Plugin.MetaTube/Jellyfin.Plugin.MetaTube.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Platforms>AnyCPU</Platforms>
<AssemblyName>MetaTube</AssemblyName>
<Authors>MetaTube</Authors>
<Description>Meta Tube Plugin for Jellyfin/Emby</Description>
<Description>MetaTube Plugin for Jellyfin/Emby</Description>
<Version>$([System.DateTime]::UtcNow.ToString(yyyy.Mdd.Hmm.0))</Version>
<Copyright>Copyright © 2023 MetaTube</Copyright>
<RepositoryType>Git</RepositoryType>
Expand All @@ -19,12 +19,9 @@
<Product>MetaTube</Product>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Debug' or '$(Configuration)'=='Release'">
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Debug.Emby' or '$(Configuration)'=='Release.Emby'">
<TargetFramework>net6.0</TargetFramework>
<PropertyGroup>
<TargetFramework Condition="'$(Configuration)'=='Debug' or '$(Configuration)'=='Release'">net8.0</TargetFramework>
<TargetFramework Condition="'$(Configuration)'=='Debug.Emby' or '$(Configuration)'=='Release.Emby'">net6.0</TargetFramework>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Debug.Emby' or '$(Configuration)'=='Release.Emby'">
Expand Down