-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
147 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,58 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ApplicationIcon>Mario.ico</ApplicationIcon> | ||
<StartupObject>PlexCleaner.Program</StartupObject> | ||
<AssemblyName>PlexCleaner</AssemblyName> | ||
<RootNamespace>PlexCleaner</RootNamespace> | ||
<Authors>Pieter Viljoen</Authors> | ||
<Company>Pieter Viljoen</Company> | ||
<Copyright>Pieter Viljoen</Copyright> | ||
<Description>Utility to optimize media files for Direct Play in Plex, Emby, Jellyfin.</Description> | ||
<PackageProjectUrl>https://github.com/ptr727/PlexCleaner</PackageProjectUrl> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<RepositoryUrl>https://github.com/ptr727/PlexCleaner</RepositoryUrl> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<Version>1.1.1</Version> | ||
<FileVersion>1.1.1.1</FileVersion> | ||
<AssemblyVersion>1.1.1.0</AssemblyVersion> | ||
<PackageId>InsaneGenius.PlexCleaner</PackageId> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> | ||
<AnalysisLevel>latest</AnalysisLevel> | ||
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\README.md"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="InsaneGenius.Utilities" Version="3.1.118" /> | ||
<PackageReference Include="JsonSchema.Net.Generation" Version="5.0.0" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> | ||
<PackageReference Include="Serilog" Version="4.2.0" /> | ||
<PackageReference Include="Serilog.Enrichers.Thread" Version="4.0.0" /> | ||
<PackageReference Include="Serilog.Sinks.Async" Version="2.1.0" /> | ||
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" /> | ||
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" /> | ||
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" /> | ||
<PackageReference Include="System.CommandLine.NamingConventionBinder" Version="2.0.0-beta4.22272.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<InternalsVisibleTo Include="PlexCleanerTests" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ApplicationIcon>Mario.ico</ApplicationIcon> | ||
<StartupObject>PlexCleaner.Program</StartupObject> | ||
<AssemblyName>PlexCleaner</AssemblyName> | ||
<RootNamespace>PlexCleaner</RootNamespace> | ||
<Authors>Pieter Viljoen</Authors> | ||
<Company>Pieter Viljoen</Company> | ||
<Copyright>Pieter Viljoen</Copyright> | ||
<Description>Utility to optimize media files for Direct Play in Plex, Emby, Jellyfin.</Description> | ||
<PackageProjectUrl>https://github.com/ptr727/PlexCleaner</PackageProjectUrl> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<RepositoryUrl>https://github.com/ptr727/PlexCleaner</RepositoryUrl> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<Version>1.1.1</Version> | ||
<FileVersion>1.1.1.1</FileVersion> | ||
<AssemblyVersion>1.1.1.0</AssemblyVersion> | ||
<PackageId>InsaneGenius.PlexCleaner</PackageId> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> | ||
<AnalysisLevel>latest</AnalysisLevel> | ||
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\README.md"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="InsaneGenius.Utilities" Version="3.1.118" /> | ||
<PackageReference Include="JsonSchema.Net.Generation" Version="5.0.0" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> | ||
<PackageReference Include="Serilog" Version="4.2.0" /> | ||
<PackageReference Include="Serilog.Enrichers.Thread" Version="4.0.0" /> | ||
<PackageReference Include="Serilog.Sinks.Async" Version="2.1.0" /> | ||
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" /> | ||
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" /> | ||
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" /> | ||
<PackageReference Include="System.CommandLine.NamingConventionBinder" Version="2.0.0-beta4.22272.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<InternalsVisibleTo Include="PlexCleanerTests" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.