-
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.
Organize AutoCompleteTextBox and RandomStringGenerator projects files
- Loading branch information
1 parent
716d727
commit e7f64f3
Showing
2 changed files
with
31 additions
and
22 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
34 changes: 19 additions & 15 deletions
34
WinUI3/AK.Toolkit.WinUI3.AutoCompleteTextBox/AK.Toolkit.WinUI3.AutoCompleteTextBox.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,32 +1,36 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net6.0-windows10.0.19041.0</TargetFramework> | ||
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion> | ||
<RootNamespace>AK.Toolkit.WinUI3</RootNamespace> | ||
<RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers> | ||
<UseWinUI>true</UseWinUI> | ||
<Nullable>enable</Nullable> | ||
<Version>0.3.0-beta</Version> | ||
<Authors>Andrew KeepCoding</Authors> | ||
<Company>Andrew KeepCoding</Company> | ||
<PackageId>AK.Toolkit.WinUI3.AutoCompleteTextBox</PackageId> | ||
<Product>AK.Toolkit.WinUI3.AutoCompleteTextBox</Product> | ||
<Copyright>Copyright (c) Andrew KeepCoding 2022</Copyright> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.0.0" /> | ||
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22000.194" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<Title>AK.Toolkit.WinUI3 - AutoCompleteTextBox</Title> | ||
<Description>A TextBox control that shows a suggestion inside the TextBox.</Description> | ||
<Version>0.3.1-beta</Version> | ||
<PackageReleaseNotes>Fix suggestion foreground visibility issue and</PackageReleaseNotes> | ||
<PackageTags>winui3;autocomplete;autosuggest;textbox;</PackageTags> | ||
<PackageProjectUrl>https://github.com/AndrewKeepCoding/AK.Toolkit</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/AndrewKeepCoding/AK.Toolkit</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageTags>winui3;autocomplete;autosuggest;textbox;</PackageTags> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<Title>AK.Toolkit.WinUI3 - AutoCompleteTextBox</Title> | ||
<Description>A TextBox control that shows a suggestion based on input. | ||
AutoCompleteTextBox shows a suggestion inside the TextBox control. | ||
</Description> | ||
<PackageId>AK.Toolkit.WinUI3.AutoCompleteTextBox</PackageId> | ||
<Product>AK.Toolkit.WinUI3.AutoCompleteTextBox</Product> | ||
<Copyright>Copyright (c) Andrew KeepCoding 2022</Copyright> | ||
<Authors>Andrew KeepCoding</Authors> | ||
<Company>Andrew KeepCoding</Company> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.0.0" /> | ||
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22000.194" /> | ||
</ItemGroup> | ||
</Project> |