Skip to content

Commit

Permalink
Organize AutoCompleteTextBox and RandomStringGenerator projects files
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKeepCoding committed May 4, 2022
1 parent 716d727 commit e7f64f3
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>AK.Toolkit.Utilities.RandomStringGenerator</PackageId>
<Version>0.1.0-alpha</Version>
<Authors>Andrew KeepCoding</Authors>
<Company>Andrew KeepCoding</Company>
<Product>AK.Toolkit.Utilities.RandomStringGenerator</Product>
</PropertyGroup>

<PropertyGroup>
<Title>AK.Toolkit.WinUI3 - RandomStringGenerator</Title>
<Description>
A static class that generates random strings.
- Numbers: 0123456789
Expand All @@ -19,14 +18,20 @@
- LowerCaseAlphaNumerics: abcdefghijklmnopqrstuvwxyz0123456789
- UpperCaseAlphaNumerics: ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
</Description>
<Copyright>Copyright (c) Andrew KeepCoding 2022</Copyright>
<Version>0.1.0-alpha</Version>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageTags>stringgenerator;random;string</PackageTags>
<PackageProjectUrl>https://github.com/AndrewKeepCoding/AK.Toolkit</PackageProjectUrl>
<RepositoryUrl>https://github.com/AndrewKeepCoding/AK.Toolkit</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>stringgenerator;random;string</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageId>AK.Toolkit.Utilities.RandomStringGenerator</PackageId>
<Product>AK.Toolkit.Utilities.RandomStringGenerator</Product>
<Copyright>Copyright (c) Andrew KeepCoding 2022</Copyright>
<Authors>Andrew KeepCoding</Authors>
<Company>Andrew KeepCoding</Company>
</PropertyGroup>

</Project>
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>

0 comments on commit e7f64f3

Please sign in to comment.