Skip to content

Commit 5646a0b

Browse files
committed
Build version 1.3.0
1 parent 5b51bd8 commit 5646a0b

File tree

7 files changed

+17
-14
lines changed

7 files changed

+17
-14
lines changed

KPCLib.nuspec

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>KPCLib</id>
5-
<version>1.2.5.0</version>
5+
<version>1.3.0.0</version>
66
<authors>Roger Ye</authors>
77
<owners>Roger Ye</owners>
88
<requireLicenseAcceptance>false</requireLicenseAcceptance>
@@ -26,6 +26,5 @@
2626
</metadata>
2727
<files>
2828
<file src="PassXYZLib/bin/Release/netstandard2.0/KPCLib.dll" target="lib/netstandard2.0/KPCLib.dll" />
29-
<file src="PassXYZLib/bin/Release/netstandard2.0/PassXYZLib.dll" target="lib/netstandard2.0/PassXYZLib.dll" />
3029
</files>
3130
</package>

KPCLib.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "KPCLib.xunit", "KPCLib.xuni
99
EndProject
1010
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PassXYZLib", "PassXYZLib\PassXYZLib.csproj", "{E6F6B65A-6474-4978-9F9C-F22194688240}"
1111
EndProject
12+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B5CFEC4A-7D25-4D24-B4F7-A568E1DF4750}"
13+
ProjectSection(SolutionItems) = preProject
14+
KPCLib.nuspec = KPCLib.nuspec
15+
PassXYZLib.nuspec = PassXYZLib.nuspec
16+
EndProjectSection
17+
EndProject
1218
Global
1319
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1420
Debug|Any CPU = Debug|Any CPU

KPCLib.xunit/PxDatabaseTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ public class PxLibInfoTests
392392
public void PxLibVersion()
393393
{
394394
Debug.WriteLine($"{PxLibInfo.Version}");
395-
Assert.Equal(PxLibInfo.Version, new System.Version("1.2.5.0"));
395+
Assert.Equal(PxLibInfo.Version, new System.Version("1.3.0.0"));
396396
}
397397

398398
[Fact]

KPCLib.xunit/pass_d_E8f4pEk.xyz

496 Bytes
Binary file not shown.

KPCLib/KPCLib.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@
66
<OutputType>Library</OutputType>
77
<StartupObject />
88
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
9-
<Version>1.2.5.0</Version>
9+
<Version>1.3.0.0</Version>
1010
<PackageProjectUrl>https://github.com/passxyz/KPCLib</PackageProjectUrl>
1111
<RepositoryUrl>https://github.com/passxyz/KPCLib</RepositoryUrl>
1212
<Description>This is the build of KeePassLib in Xamarin Portable Class Library. Three platforms, UWP, Android and iOS, are supported and tested.</Description>
1313
<Copyright>Dominik Reichl is the author of the original KeePassLib on Windows platform. Roger Ye created this for UWP, Android and iOS platforms.</Copyright>
1414
<Authors>Roger Ye</Authors>
1515
<Company>PassXYZ Inc.</Company>
16-
<PackageReleaseNotes>- Updated to KeePass 2.48.1
17-
16+
<PackageReleaseNotes>- Moved PassXYZLib to a separate package
17+
- Updated to KeePass 2.48.1
1818
- Fixed an issue in CryptoRandom.cs</PackageReleaseNotes>
1919
<NeutralLanguage>en-US</NeutralLanguage>
20-
<AssemblyVersion>1.2.5.0</AssemblyVersion>
21-
<FileVersion>1.2.5.0</FileVersion>
20+
<AssemblyVersion>1.3.0.0</AssemblyVersion>
21+
<FileVersion>1.3.0.0</FileVersion>
2222
</PropertyGroup>
2323

2424
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

PassXYZLib.nuspec

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
<summary>PassXYZLib added additional features for Xamarin Forms.</summary>
3131
</metadata>
3232
<files>
33-
<file src="PassXYZLib/bin/Release/netstandard2.0/KPCLib.dll" target="lib/netstandard2.0/KPCLib.dll" />
3433
<file src="PassXYZLib/bin/Release/netstandard2.0/PassXYZLib.dll" target="lib/netstandard2.0/PassXYZLib.dll" />
3534
</files>
3635
</package>

PassXYZLib/PassXYZLib.csproj

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,19 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>1.2.5.0</Version>
6-
<AssemblyVersion>1.2.5.0</AssemblyVersion>
7-
<FileVersion>1.2.5.0</FileVersion>
5+
<Version>1.3.0.0</Version>
6+
<AssemblyVersion>1.3.0.0</AssemblyVersion>
7+
<FileVersion>1.3.0.0</FileVersion>
88
<Company>PassXYZ Inc.</Company>
99
<Authors>Roger Ye</Authors>
1010
<Copyright>Roger Ye</Copyright>
1111
<PackageReleaseNotes>- Generate icons from URL field
12-
1312
- Using icons from FontAwesome
14-
1513
- Fixed an issue in CurrentPath</PackageReleaseNotes>
1614
<PackageProjectUrl>https://github.com/passxyz/KPCLib</PackageProjectUrl>
1715
<RepositoryUrl>https://github.com/passxyz/KPCLib</RepositoryUrl>
1816
<NeutralLanguage>en-US</NeutralLanguage>
17+
<Description>This is an extension of KPCLib.</Description>
1918
</PropertyGroup>
2019

2120
<ItemGroup>

0 commit comments

Comments
 (0)