Skip to content

Commit

Permalink
set package and namespace to Kentico.Xperience.Disqus.Widget (#8)
Browse files Browse the repository at this point in the history
* set package and namespace to Kentico.Xperience.Disqus.Widget

* change only package name

* update icon

* use net6.0

* update icon

Co-authored-by: Kuba Oczko <[email protected]>
  • Loading branch information
kentico-ericd and KubaOczko authored Sep 6, 2022
1 parent f48f6ad commit b7fff01
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 38 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[![Nuget](https://img.shields.io/nuget/v/Kentico.Xperience.Disqus)](https://www.nuget.org/packages/Kentico.Xperience.Disqus) [![Stack Overflow](https://img.shields.io/badge/Stack%20Overflow-ASK%20NOW-FE7A16.svg?logo=stackoverflow&logoColor=white)](https://stackoverflow.com/tags/kentico)
[![Nuget](https://img.shields.io/nuget/v/Kentico.Xperience.Disqus.Widget)](https://www.nuget.org/packages/Kentico.Xperience.Disqus.Widget) [![Stack Overflow](https://img.shields.io/badge/Stack%20Overflow-ASK%20NOW-FE7A16.svg?logo=stackoverflow&logoColor=white)](https://stackoverflow.com/tags/kentico)

# Xperience by Kentico Disqus Widget

The __Disqus comments__ widget for Xperience by Kentico provides an option to add a comment section to any page on your website. Disqus offers advanced moderation tools, analytics, and monetization options.

## Installation

1. Install the latest [Kentico.Xperience.Disqus](https://www.nuget.org/packages/Kentico.Xperience.Disqus#versions-body-tab) __2.x.x__ NuGet package in your Xperience by Kentico project.
1. Install the latest [Kentico.Xperience.Disqus.Widget](https://www.nuget.org/packages/Kentico.Xperience.Disqus.Widget#versions-body-tab) NuGet package in your Xperience by Kentico project.
1. Open the [Disqus Admin](https://disqus.com/admin/) website.
1. Select the "I want to install Disqus on my site" option if you haven't done so before.
1. Create a new site (or select an existing one) and note the __Shortname__ from __Settings__ -> __General__ tab.
Expand Down
Binary file modified img/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
72 changes: 36 additions & 36 deletions src/Kentico.Xperience.Disqus.csproj
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<TargetFramework>netcoreapp6</TargetFramework>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
</PropertyGroup>

<PropertyGroup>
<Title>Xperience by Kentico Disqus Widget</Title>
<PackageId>Kentico.Xperience.Disqus</PackageId>
<Version>2.0.0</Version>
<Authors>Kentico Software</Authors>
<Company>Kentico Software</Company>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>kentico xperience mvc core disqus comments</PackageTags>
<Description>A page builder widget which enables Disqus comments on your Xperience by Kentico website.</Description>
<RepositoryUrl>https://github.com/Kentico/xperience-disqus/tree/xbk</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\img\icon.png" Pack="true" PackagePath="" />
</ItemGroup>

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Kentico.Xperience.WebApp" Version="22.0.3" />
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
</PropertyGroup>

<PropertyGroup>
<Title>Xperience by Kentico Disqus Widget</Title>
<PackageId>Kentico.Xperience.Disqus.Widget</PackageId>
<Version>1.0.0</Version>
<Authors>Kentico Software</Authors>
<Company>Kentico Software</Company>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>kentico xperience mvc core disqus comments</PackageTags>
<Description>A page builder widget which enables Disqus comments on your Xperience by Kentico website.</Description>
<RepositoryUrl>https://github.com/Kentico/xperience-disqus/tree/xbk</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\img\icon.png" Pack="true" PackagePath="" />
</ItemGroup>

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Kentico.Xperience.WebApp" Version="22.0.3" />
</ItemGroup>

</Project>

0 comments on commit b7fff01

Please sign in to comment.