Skip to content

Commit

Permalink
Rename from WinAppCommunity to WindowsAppCommunity
Browse files Browse the repository at this point in the history
  • Loading branch information
Arlodotexe committed Dec 29, 2024
1 parent d6eb2f4 commit 2c90942
Show file tree
Hide file tree
Showing 66 changed files with 70 additions and 70 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ jobs:
- name: Build
run: dotnet build --no-restore -p:Configuration=Release
- name: Publish to NuGet
run: dotnet nuget push "/home/runner/work/WinAppCommunity.Sdk/WinAppCommunity.Sdk/src/bin/Release/WinAppCommunity.Sdk.*.*.*.nupkg" --skip-duplicate --api-key ${{secrets.NUGET_KEY}} --source https://api.nuget.org/v3/index.json
run: dotnet nuget push "/home/runner/work/WindowsAppCommunity.Sdk/WindowsAppCommunity.Sdk/src/bin/Release/WindowsAppCommunity.Sdk.*.*.*.nupkg" --skip-duplicate --api-key ${{secrets.NUGET_KEY}} --source https://api.nuget.org/v3/index.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# WinAppCommunity.Sdk [![Version](https://img.shields.io/nuget/v/WinAppCommunity.Sdk.svg)](https://www.nuget.org/packages/WinAppCommunity.Sdk)
# WindowsAppCommunity.Sdk [![Version](https://img.shields.io/nuget/v/WindowsAppCommunity.Sdk.svg)](https://www.nuget.org/packages/WindowsAppCommunity.Sdk)

Manage your user, projects and publisher membership in the Windows App Community. Fully peer-to-peer.
![Banner2](https://github.com/user-attachments/assets/9fbe1f09-cf9d-406f-8df5-58d069ef7a00)

This is a Work In Progress and is not yet ready for use. Please check back later.

Intended to supersede https://github.com/WinAppCommunity/uwpcommunity-backend
Intended to supersede https://github.com/WindowsAppCommunity/uwpcommunity-backend

## Featuring:
- x
Expand All @@ -14,13 +14,13 @@ Intended to supersede https://github.com/WinAppCommunity/uwpcommunity-backend

## Install

Published releases are available on [NuGet](https://www.nuget.org/packages/WinAppCommunity.Sdk). To install, run the following command in the [Package Manager Console](https://docs.nuget.org/docs/start-here/using-the-package-manager-console).
Published releases are available on [NuGet](https://www.nuget.org/packages/WindowsAppCommunity.Sdk). To install, run the following command in the [Package Manager Console](https://docs.nuget.org/docs/start-here/using-the-package-manager-console).

PM> Install-Package WinAppCommunity.Sdk
PM> Install-Package WindowsAppCommunity.Sdk

Or using [dotnet](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet)

> dotnet add package WinAppCommunity.Sdk
> dotnet add package WindowsAppCommunity.Sdk

## Usage

Expand Down
4 changes: 2 additions & 2 deletions WinAppCommunity.Sdk.sln → WindowsAppCommunity.Sdk.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.32802.463
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WinAppCommunity.Sdk", "src\WinAppCommunity.Sdk.csproj", "{4103C486-827D-4DDC-A600-752D8DD3D6E0}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WindowsAppCommunity.Sdk", "src\WindowsAppCommunity.Sdk.csproj", "{4103C486-827D-4DDC-A600-752D8DD3D6E0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinAppCommunity.Sdk.Tests", "tests\WinAppCommunity.Sdk.Tests.csproj", "{296B048C-F31A-4555-AE05-B96F27399907}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsAppCommunity.Sdk.Tests", "tests\WindowsAppCommunity.Sdk.Tests.csproj", "{296B048C-F31A-4555-AE05-B96F27399907}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
2 changes: 1 addition & 1 deletion src/IModifiableAccentColor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents an accent color that can be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IModifiableConnection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a modifiable connection with a key and a value.
Expand Down
2 changes: 1 addition & 1 deletion src/IModifiableConnectionsCollection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a modifiable connections collection.
Expand Down
2 changes: 1 addition & 1 deletion src/IModifiableEntity.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a modifiable entity with common methods.
Expand Down
2 changes: 1 addition & 1 deletion src/IModifiableFeaturesCollection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a collection of features that can be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IModifiableImagesCollection.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using OwlCore.Storage;

namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a collection of images that can be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IModifiableLinksCollection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a modifiable collection of connections.
Expand Down
2 changes: 1 addition & 1 deletion src/IModifiableProject.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a project that can be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IModifiableProjectCollection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a modifiable collection of projects.
Expand Down
2 changes: 1 addition & 1 deletion src/IModifiableProjectRole.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a project with a corresponding role that can be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IModifiableProjectRoleCollection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a collection of projects with corresponding roles that can be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IModifiablePublisher.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a content publisher that can be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IModifiablePublisherCollection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a collection of publishers that can be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IModifiablePublisherRole.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a publisher with a corresponding role that can be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IModifiablePublisherRoleCollection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a collection of publishers with corresponding roles that can be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IModifiableUser.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a user that can be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IModifiableUserCollection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a collection of users with a corresponding role that can be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IModifiableUserRole.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a user with a corresponding role that can be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IModifiableUserRoleCollection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a collection of users with a corresponding role that can be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IReadOnlyAccentColor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents an accent color that cannot be updatd.
Expand Down
2 changes: 1 addition & 1 deletion src/IReadOnlyConnection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a read-only connection with an ID and a value.
Expand Down
2 changes: 1 addition & 1 deletion src/IReadOnlyConnectionsCollection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a modifiable connections collection.
Expand Down
2 changes: 1 addition & 1 deletion src/IReadOnlyEntity.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a read-only entity with common properties and events.
Expand Down
2 changes: 1 addition & 1 deletion src/IReadOnlyFeaturesCollection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a collection of features that can be read but not modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IReadOnlyImagesCollection.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using OwlCore.Storage;

namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a collection of images.
Expand Down
2 changes: 1 addition & 1 deletion src/IReadOnlyLinksCollection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a read-only collection of links.
Expand Down
2 changes: 1 addition & 1 deletion src/IReadOnlyProject.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a project.
Expand Down
2 changes: 1 addition & 1 deletion src/IReadOnlyProjectCollection.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;

namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a collection of projects.
Expand Down
2 changes: 1 addition & 1 deletion src/IReadOnlyProjectRole.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a project with a corresponding role that cannot be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IReadOnlyProjectRoleCollection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a collection of projects with corresponding roles that cannot be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IReadOnlyPublisher.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a publisher, a collection of projects and collaborators who publish content to users.
Expand Down
2 changes: 1 addition & 1 deletion src/IReadOnlyPublisherCollection.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;

namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a collection of publishers that can be read but not modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IReadOnlyPublisherRole.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a publisher with a corresponding role that cannot be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IReadOnlyPublisherRoleCollection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a collection of publishers with corresponding roles that cannot be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IReadOnlyUser.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a user.
Expand Down
2 changes: 1 addition & 1 deletion src/IReadOnlyUserCollection.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;

namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a collection of users.
Expand Down
2 changes: 1 addition & 1 deletion src/IReadOnlyUserRole.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a user with a corresponding role that cannot be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/IReadOnlyUserRoleCollection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents a collection of users with a corresponding role that cannot be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/Link.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk;
namespace WindowsAppCommunity.Sdk;

/// <summary>
/// Represents the data for a link.
Expand Down
2 changes: 1 addition & 1 deletion src/Models/IAccentColor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk.Models;
namespace WindowsAppCommunity.Sdk.Models;

/// <summary>
/// Represents an accent color.
Expand Down
2 changes: 1 addition & 1 deletion src/Models/IConnections.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using Ipfs;

namespace WinAppCommunity.Sdk.Models;
namespace WindowsAppCommunity.Sdk.Models;

/// <summary>
/// Represents a published collection of key-value connection pairs.
Expand Down
2 changes: 1 addition & 1 deletion src/Models/IEntity.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk.Models;
namespace WindowsAppCommunity.Sdk.Models;

/// <summary>
/// Represents a published entity.
Expand Down
2 changes: 1 addition & 1 deletion src/Models/IImages.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Ipfs;

namespace WinAppCommunity.Sdk.Models;
namespace WindowsAppCommunity.Sdk.Models;

/// <summary>
/// Represents a published collection of images.
Expand Down
2 changes: 1 addition & 1 deletion src/Models/ILinkCollection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace WinAppCommunity.Sdk.Models;
namespace WindowsAppCommunity.Sdk.Models;

/// <summary>
/// Represents a published collection of links.
Expand Down
2 changes: 1 addition & 1 deletion src/Models/IProjectRoleCollection.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using Ipfs;

namespace WinAppCommunity.Sdk.Models;
namespace WindowsAppCommunity.Sdk.Models;

/// <summary>
/// Represents a published collection of projects and roles on each.
Expand Down
2 changes: 1 addition & 1 deletion src/Models/IPublisherRoleCollection.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using Ipfs;

namespace WinAppCommunity.Sdk.Models;
namespace WindowsAppCommunity.Sdk.Models;

/// <summary>
/// Represents a published collection of publishers and roles on each.
Expand Down
2 changes: 1 addition & 1 deletion src/Models/IUserRoleCollection.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using Ipfs;

namespace WinAppCommunity.Sdk.Models;
namespace WindowsAppCommunity.Sdk.Models;

/// <summary>
/// Represents a list of registered users along with the role on each.
Expand Down
2 changes: 1 addition & 1 deletion src/Models/Image.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Ipfs;
using OwlCore.Storage;

namespace WinAppCommunity.Sdk.Models;
namespace WindowsAppCommunity.Sdk.Models;

/// <summary>
/// Represents image metadata.
Expand Down
2 changes: 1 addition & 1 deletion src/Models/Link.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using OwlCore.Storage;

namespace WinAppCommunity.Sdk.Models;
namespace WindowsAppCommunity.Sdk.Models;

/// <summary>
/// Represents the data for a link.
Expand Down
2 changes: 1 addition & 1 deletion src/Models/Project.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Ipfs;
using System.Collections.Generic;

namespace WinAppCommunity.Sdk.Models;
namespace WindowsAppCommunity.Sdk.Models;

/// <summary>
/// Represents a project.
Expand Down
Loading

0 comments on commit 2c90942

Please sign in to comment.