-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
set package and namespace to Kentico.Xperience.Disqus.Widget (#8)
* 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
1 parent
f48f6ad
commit b7fff01
Showing
3 changed files
with
38 additions
and
38 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,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> |