-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reorganisation of projects to prepare for NuGet publishing
- Loading branch information
Showing
17 changed files
with
189 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package > | ||
<metadata> | ||
<id>$id$</id> | ||
<version>1.7.3</version> | ||
<title>PlexDL.Common.Enums</title> | ||
<authors>BRH Media</authors> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<license type="expression">MIT</license> | ||
<projectUrl>https://github.com/BRH-Media/PlexDL</projectUrl> | ||
<description>Contains enumerables required for PlexDL dependencies</description> | ||
<releaseNotes>Initial release</releaseNotes> | ||
<copyright>Copyright (c) BRH Media (Baeleigh Harris) 2024</copyright> | ||
<tags>PlexDL enums package</tags> | ||
</metadata> | ||
</package> |
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
78 changes: 78 additions & 0 deletions
78
PlexDL.Common.Pxz.Explorer/PlexDL.Common.Pxz.Explorer.csproj
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 |
---|---|---|
@@ -0,0 +1,78 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{0A32FB9A-6AA2-4B4A-BD51-3AB9F2706232}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>PlexDL.Common.Pxz.Explorer</RootNamespace> | ||
<AssemblyName>PlexDL.Common.Pxz.Explorer</AssemblyName> | ||
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
<Deterministic>true</Deterministic> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Drawing" /> | ||
<Reference Include="System.Windows.Forms" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
<Compile Include="UI\PxzExplorer.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
<Compile Include="UI\PxzExplorer.Designer.cs"> | ||
<DependentUpon>PxzExplorer.cs</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\PlexDL.Common.Components\PlexDL.Common.Components.csproj"> | ||
<Project>{3c18fc31-d361-42fb-ae18-42faacd4e419}</Project> | ||
<Name>PlexDL.Common.Components</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\PlexDL.Common.Enums\PlexDL.Common.Enums.csproj"> | ||
<Project>{2c0b4243-5d9e-454a-9a7b-dcac2787b13e}</Project> | ||
<Name>PlexDL.Common.Enums</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\PlexDL.Common.Pxz\PlexDL.Common.Pxz.csproj"> | ||
<Project>{1764ca80-f851-4e2c-acc8-37696d499d3b}</Project> | ||
<Name>PlexDL.Common.Pxz</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\PlexDL.WaitWindow\PlexDL.WaitWindow.csproj"> | ||
<Project>{6d5d6fdd-9371-4ebb-8875-eebe170a47cd}</Project> | ||
<Name>PlexDL.WaitWindow</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\UIHelpers\UIHelpers.csproj"> | ||
<Project>{e3ce262b-b962-44ff-abc0-5ebfb403d51d}</Project> | ||
<Name>UIHelpers</Name> | ||
</ProjectReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="UI\PxzExplorer.resx"> | ||
<DependentUpon>PxzExplorer.cs</DependentUpon> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
</Project> |
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
using System.Runtime.InteropServices; | ||
|
||
// General Information about an assembly is controlled through the following | ||
// set of attributes. Change these attribute values to modify the information | ||
// associated with an assembly. | ||
[assembly: AssemblyTitle("PlexDL.Common.Pxz.Explorer")] | ||
[assembly: AssemblyDescription("")] | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("")] | ||
[assembly: AssemblyProduct("PlexDL.Common.Pxz.Explorer")] | ||
[assembly: AssemblyCopyright("Copyright © 2024")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
|
||
// Setting ComVisible to false makes the types in this assembly not visible | ||
// to COM components. If you need to access a type in this assembly from | ||
// COM, set the ComVisible attribute to true on that type. | ||
[assembly: ComVisible(false)] | ||
|
||
// The following GUID is for the ID of the typelib if this project is exposed to COM | ||
[assembly: Guid("0a32fb9a-6aa2-4b4a-bd51-3ab9f2706232")] | ||
|
||
// Version information for an assembly consists of the following four values: | ||
// | ||
// Major Version | ||
// Minor Version | ||
// Build Number | ||
// Revision | ||
// | ||
// You can specify all the values or you can default the Build and Revision Numbers | ||
// by using the '*' as shown below: | ||
// [assembly: AssemblyVersion("1.0.*")] | ||
[assembly: AssemblyVersion("1.0.0.0")] | ||
[assembly: AssemblyFileVersion("1.0.0.0")] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package > | ||
<metadata> | ||
<id>$id$</id> | ||
<version>1.7.3</version> | ||
<title>PlexDL.Common.Pxz</title> | ||
<authors>BRH Media</authors> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<license type="expression">MIT</license> | ||
<projectUrl>https://github.com/BRH-Media/PlexDL</projectUrl> | ||
<description>Provides decoding and encoding for the PXZ (PlexDL XML-Zipped) Format</description> | ||
<releaseNotes>Initial release</releaseNotes> | ||
<copyright>Copyright (c) BRH Media (Baeleigh Harris) 2024</copyright> | ||
<tags>PlexDL pxz packing xml zip enums security png</tags> | ||
<dependencies> | ||
<dependency id="PlexDL.Common.Enums" version="1.7.3"></dependency> | ||
<dependency id="PlexDL.Common.Security" version="1.7.3"></dependency> | ||
</dependencies> | ||
</metadata> | ||
</package> |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package > | ||
<metadata> | ||
<id>$id$</id> | ||
<version>1.7.3</version> | ||
<title>PlexDL.Common.Security</title> | ||
<authors>BRH Media</authors> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<license type="expression">MIT</license> | ||
<projectUrl>https://github.com/BRH-Media/PlexDL</projectUrl> | ||
<description>Provides security functionality (i.e., encryption/decryption) for various PlexDL functions</description> | ||
<releaseNotes>Initial release</releaseNotes> | ||
<copyright>Copyright (c) BRH Media (Baeleigh Harris) 2024</copyright> | ||
<tags>PlexDL enums security package</tags> | ||
<dependencies> | ||
<dependency id="PlexDL.Common.Enums" version="1.7.3"></dependency> | ||
</dependencies> | ||
</metadata> | ||
</package> |
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,4 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="net472" /> | ||
<package id="NuGet.CommandLine" version="6.11.1" targetFramework="net472" developmentDependency="true" /> | ||
</packages> |