-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from AndrewKeepCoding/feat/publish-richtextblo…
…ck-extensions Publish RichTextBlock extensions
- Loading branch information
Showing
5 changed files
with
54 additions
and
10 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
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
39 changes: 34 additions & 5 deletions
39
...K.Toolkit.WinUI3.RichTextBlockExtensions/AK.Toolkit.WinUI3.RichTextBlockExtensions.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 |
---|---|---|
@@ -1,14 +1,43 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0-windows10.0.19041.0</TargetFramework> | ||
<TargetFrameworks>net6.0-windows10.0.19041.0;net7.0-windows10.0.19041.0</TargetFrameworks> | ||
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion> | ||
<RootNamespace>AK.Toolkit.WinUI3.RichTextBlockExtensions</RootNamespace> | ||
<RootNamespace>AK.Toolkit.WinUI3</RootNamespace> | ||
<RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers> | ||
<UseWinUI>true</UseWinUI> | ||
<Nullable>enable</Nullable> | ||
<LangVersion>latest</LangVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<Title>AK.Toolkit.WinUI3.RichTextBlockExtensions</Title> | ||
<Description> | ||
Extensions to the built-in RichTextBlock: | ||
- Text highlighting | ||
</Description> | ||
<Version>1.0.0</Version> | ||
<PackageTags>winui3;winappsdk;extensions;richtextblock</PackageTags> | ||
<PackageProjectUrl>https://github.com/AndrewKeepCoding/AK.Toolkit</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/AndrewKeepCoding/AK.Toolkit</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<PackageId>AK.Toolkit.WinUI3.RichTextBlockExtensions</PackageId> | ||
<Product>AK.Toolkit.WinUI3.RichTextBlockExtensions</Product> | ||
<Copyright>Copyright (c) Andrew KeepCoding 2024</Copyright> | ||
<Authors>Andrew KeepCoding</Authors> | ||
<PackageReadMeFile>README.md</PackageReadMeFile> | ||
<PackageIcon>winui.png</PackageIcon> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\..\README.md" Pack="true" PackagePath="\" /> | ||
<None Include="..\..\winui.png" Pack="true" PackagePath="" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.4.230913002" /> | ||
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.755" /> | ||
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.4.240211001" /> | ||
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.2428" /> | ||
</ItemGroup> | ||
</Project> |