Skip to content

Commit

Permalink
Merge pull request #10 from pleonex/feature/change-namespace
Browse files Browse the repository at this point in the history
Change namespace because prefix "Pleosoft" was already reserved in nuget.org
  • Loading branch information
pleonex authored Dec 4, 2021
2 parents ccdf157 + 080f7ca commit 4aa29f8
Show file tree
Hide file tree
Showing 43 changed files with 67 additions and 67 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Cake: Run Build",
"program": "${workspaceFolder}/src/Pleosoft.XdeltaSharp.Cli/bin/Debug/net5.0/linux-x64/XdeltaSharp.dll",
"program": "${workspaceFolder}/src/PleOps.XdeltaSharp.Cli/bin/Debug/net6.0/linux-x64/PleOps.XdeltaSharp.dll",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"cSpell.words": [
"Diagnoser",
"Lzma",
"Pleosoft",
"PleOps",
"VCDIFF",
"Xdelta"
],
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Pleosoft.XdeltaSharp ![Build and release](https://github.com/pleonex/xdelta-sharp/workflows/Build%20and%20release/badge.svg) ![GitHub](https://img.shields.io/github/license/pleonex/xdelta-sharp)
# PleOps.XdeltaSharp ![Build and release](https://github.com/pleonex/xdelta-sharp/workflows/Build%20and%20release/badge.svg) ![GitHub](https://img.shields.io/github/license/pleonex/xdelta-sharp)

**NOTE: At this stage, this projects can only decompress patch files. It cannot
generate / compress.**

**Pleosoft.XdeltaSharp** offers the possibility to apply delta/patch files with
**PleOps.XdeltaSharp** offers the possibility to apply delta/patch files with
format `VCDIFF`, as described in the
[RFC 3284](https://tools.ietf.org/html/rfc3284).

Expand All @@ -14,7 +14,7 @@ runtime that implements .NET Standard 2.0 (.NET Framework, Mono and .NET).
<!-- prettier-ignore -->
| Release | Package |
| ------- | ----------------------------------------------------------------- |
| Stable | [![Nuget](https://img.shields.io/nuget/v/Pleosoft.XdeltaSharp?label=nuget.org&logo=nuget)](https://www.nuget.org/packages/Pleosoft.XdeltaSharp) |
| Stable | [![Nuget](https://img.shields.io/nuget/v/PleOps.XdeltaSharp?label=nuget.org&logo=nuget)](https://www.nuget.org/packages/PleOps.XdeltaSharp) |
| Preview | [Azure Artifacts](https://dev.azure.com/pleonex/Pleosoft/_packaging?_a=feed&feed=Pleosoft-Preview) |

The project takes the name from [xdelta](https://github.com/jmacd/xdelta).
Expand Down
6 changes: 3 additions & 3 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ Task("Define-Project")
info.WarningsAsErrors = false;
info.CoverageTarget = 75;

info.AddLibraryProjects("Pleosoft.XdeltaSharp");
info.AddApplicationProjects("Pleosoft.XdeltaSharp.Cli");
info.AddTestProjects("Pleosoft.XdeltaSharp.UnitTests");
info.AddLibraryProjects("PleOps.XdeltaSharp");
info.AddApplicationProjects("PleOps.XdeltaSharp.Cli");
info.AddTestProjects("PleOps.XdeltaSharp.UnitTests");

info.PreviewNuGetFeed = "https://pkgs.dev.azure.com/pleonex/Pleosoft/_packaging/Pleosoft-Preview/nuget/v3/index.json";
});
Expand Down
2 changes: 1 addition & 1 deletion docs/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"src": [
{
"files": [
"Pleosoft.XdeltaSharp/Pleosoft.XdeltaSharp.csproj"
"PleOps.XdeltaSharp/PleOps.XdeltaSharp.csproj"
],
"src": "../src"
}
Expand Down
4 changes: 2 additions & 2 deletions docs/global_metadata.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"_appTitle": "Pleosoft.XdeltaSharp - VCDIFF for .NET",
"_appTitle": "PleOps.XdeltaSharp - VCDIFF for .NET",
"_appFooter": "Copyright (c) 2015 Benito Palacios Sánchez",
"_enableSearch": true,
"_enableNewTab": true,
"_gitContribute": {
"apiSpecFolder": "docs/apidoc",
"repo": "https://github.com/pleonex/xdelta-csharp",
"repo": "https://github.com/pleonex/xdelta-sharp",
"branch": "main"
}
}
6 changes: 3 additions & 3 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Product>Pleosoft.XdeltaSharp</Product>
<Product>PleOps.XdeltaSharp</Product>
<Authors>pleonex</Authors>
<Copyright>Copyright (C) 2015 Benito Palacios Sánchez</Copyright>

Expand All @@ -14,8 +14,8 @@

<PropertyGroup>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://pleonex.dev/xdelta-csharp</PackageProjectUrl>
<RepositoryUrl>https://github.com/pleonex/xdelta-csharp</RepositoryUrl>
<PackageProjectUrl>https://pleonex.dev/xdelta-sharp</PackageProjectUrl>
<RepositoryUrl>https://github.com/pleonex/xdelta-sharp</RepositoryUrl>
<!-- <PackageIcon>icon.png</PackageIcon> -->
<PackageTags>decompress;vcdiff;rfc3284;xdelta</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
<OutputType>Exe</OutputType>
<AssemblyName>XdeltaSharp</AssemblyName>
<Description>Decompressor of VCDIFF patch files (RFC3284).</Description>
<RootNamespace>Pleosoft.XdeltaSharp.Cli</RootNamespace>
<RootNamespace>PleOps.XdeltaSharp.Cli</RootNamespace>
<TargetFramework>net6.0</TargetFramework>

<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="../Pleosoft.XdeltaSharp/Pleosoft.XdeltaSharp.csproj" />
<ProjectReference Include="../PleOps.XdeltaSharp/PleOps.XdeltaSharp.csproj" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp.Cli
namespace PleOps.XdeltaSharp.Cli
{
using System;
using System.Diagnostics;
using System.IO;
using Pleosoft.XdeltaSharp.Decoder;
using PleOps.XdeltaSharp.Decoder;

public static class Program
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp.PerformanceTests
namespace PleOps.XdeltaSharp.PerformanceTests
{
using System.IO;
using BenchmarkDotNet.Attributes;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<Description>Performance tests of the library.</Description>
<RootNamespace>Pleosoft.XdeltaSharp.PerformanceTests</RootNamespace>
<RootNamespace>PleOps.XdeltaSharp.PerformanceTests</RootNamespace>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Pleosoft.XdeltaSharp\Pleosoft.XdeltaSharp.csproj" />
<ProjectReference Include="..\PleOps.XdeltaSharp\PleOps.XdeltaSharp.csproj" />

<PackageReference Include="BenchmarkDotNet" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp.PerformanceTests
namespace PleOps.XdeltaSharp.PerformanceTests
{
using BenchmarkDotNet.Running;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp.UnitTests
namespace PleOps.XdeltaSharp.UnitTests
{
using System;
using System.IO;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp.UnitTests
namespace PleOps.XdeltaSharp.UnitTests
{
using System.IO;
using NUnit.Framework;
using Pleosoft.XdeltaSharp.Decoder;
using PleOps.XdeltaSharp.Decoder;

[TestFixture]
public class DecoderTests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp.UnitTests
namespace PleOps.XdeltaSharp.UnitTests
{
using System;
using System.IO;
using NUnit.Framework;
using Pleosoft.XdeltaSharp.Decoder;
using PleOps.XdeltaSharp.Decoder;

[TestFixture]
public class HeaderReaderTests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Unit tests of the library.</Description>
<RootNamespace>Pleosoft.XdeltaSharp.UnitTests</RootNamespace>
<RootNamespace>PleOps.XdeltaSharp.UnitTests</RootNamespace>
<TargetFrameworks>net48;net6.0</TargetFrameworks>
<LangVersion>8.0</LangVersion>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="../Pleosoft.XdeltaSharp/Pleosoft.XdeltaSharp.csproj" />
<ProjectReference Include="../PleOps.XdeltaSharp/PleOps.XdeltaSharp.csproj" />

<PackageReference Include="NUnit" />
<PackageReference Include="NUnit3TestAdapter" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp.UnitTests
namespace PleOps.XdeltaSharp.UnitTests
{
using System;
using System.IO;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp.UnitTests
namespace PleOps.XdeltaSharp.UnitTests
{
using System;
using System.IO;
using NUnit.Framework;
using Pleosoft.XdeltaSharp.Decoder;
using Pleosoft.XdeltaSharp.Vcdiff;
using PleOps.XdeltaSharp.Decoder;
using PleOps.XdeltaSharp.Vcdiff;

[TestFixture]
public class WindowReaderTests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp
namespace PleOps.XdeltaSharp
{
public enum AddressMode {
Self,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp
namespace PleOps.XdeltaSharp
{
using System;
using System.Buffers;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp
namespace PleOps.XdeltaSharp
{
using System;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp
namespace PleOps.XdeltaSharp
{
using System;
using Pleosoft.XdeltaSharp.Vcdiff.Instructions;
using PleOps.XdeltaSharp.Vcdiff.Instructions;

public class CodeTable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp.Decoder
namespace PleOps.XdeltaSharp.Decoder
{
using System;
using System.IO;
using Pleosoft.XdeltaSharp.Vcdiff;
using PleOps.XdeltaSharp.Vcdiff;

public class Decoder : IDisposable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp.Decoder
namespace PleOps.XdeltaSharp.Decoder
{
using System;
using System.IO;
using Pleosoft.XdeltaSharp.Vcdiff;
using PleOps.XdeltaSharp.Vcdiff;

internal class HeaderReader
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp.Decoder
namespace PleOps.XdeltaSharp.Decoder
{
using System;
using System.IO;
using Pleosoft.XdeltaSharp.Vcdiff;
using Pleosoft.XdeltaSharp.Vcdiff.Instructions;
using PleOps.XdeltaSharp.Vcdiff;
using PleOps.XdeltaSharp.Vcdiff.Instructions;

public class WindowDecoder
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp.Decoder
namespace PleOps.XdeltaSharp.Decoder
{
using System;
using System.IO;
using Pleosoft.XdeltaSharp.Vcdiff;
using PleOps.XdeltaSharp.Vcdiff;

internal class WindowReader
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Description>Decompressor of VCDIFF patch files (RFC3284).</Description>
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<RootNamespace>Pleosoft.XdeltaSharp</RootNamespace>
<RootNamespace>PleOps.XdeltaSharp</RootNamespace>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp
namespace PleOps.XdeltaSharp
{
public delegate void ProgressChangedHandler(double progress);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp
namespace PleOps.XdeltaSharp
{
internal static class UInt32Extensions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp
namespace PleOps.XdeltaSharp
{
using System;
using System.IO;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp.Vcdiff
namespace PleOps.XdeltaSharp.Vcdiff
{
public class Header
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
namespace Pleosoft.XdeltaSharp.Vcdiff
namespace PleOps.XdeltaSharp.Vcdiff
{
using System;

Expand Down
Loading

0 comments on commit 4aa29f8

Please sign in to comment.