From ae90ae628ea7daaa3a5275b1d78327e39b6b9322 Mon Sep 17 00:00:00 2001 From: Matthew Parker Date: Wed, 18 Dec 2024 05:21:26 +0000 Subject: [PATCH 1/2] Fixed shared proj references --- .../PinguApps.Appwrite.Client.csproj | 11 ++++++++++- .../PinguApps.Appwrite.Server.csproj | 11 ++++++++++- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/src/PinguApps.Appwrite.Client/PinguApps.Appwrite.Client.csproj b/src/PinguApps.Appwrite.Client/PinguApps.Appwrite.Client.csproj index 050cc611..86dc910d 100644 --- a/src/PinguApps.Appwrite.Client/PinguApps.Appwrite.Client.csproj +++ b/src/PinguApps.Appwrite.Client/PinguApps.Appwrite.Client.csproj @@ -20,6 +20,8 @@ PinguApps A .NET implementation of the Appwrite SDK for client-side consumption. Ideal for developers looking to leverage Appwrite's powerful backend capabilities in their .NET applications. Copyright 2024 (c) Pingu. All rights reserved. + + $(TargetsForTfmSpecificBuildOutput);CopyProjectReferencesToPackage @@ -33,7 +35,8 @@ - runtime; build; native; contentfiles; analyzers + true + PinguApps.Appwrite.Shared.dll @@ -42,4 +45,10 @@ + + + + + + diff --git a/src/PinguApps.Appwrite.Server/PinguApps.Appwrite.Server.csproj b/src/PinguApps.Appwrite.Server/PinguApps.Appwrite.Server.csproj index e3a05e64..fb24d1b8 100644 --- a/src/PinguApps.Appwrite.Server/PinguApps.Appwrite.Server.csproj +++ b/src/PinguApps.Appwrite.Server/PinguApps.Appwrite.Server.csproj @@ -20,6 +20,8 @@ PinguApps A .NET implementation of the Appwrite SDK for server-side consumption. Ideal for developers looking to leverage Appwrite's powerful backend capabilities in their .NET applications. Copyright 2024 (c) Pingu. All rights reserved. + + $(TargetsForTfmSpecificBuildOutput);CopyProjectReferencesToPackage @@ -33,7 +35,8 @@ - runtime; build; native; contentfiles; analyzers + true + PinguApps.Appwrite.Shared.dll @@ -42,4 +45,10 @@ + + + + + + From cc1d98c63545ea1f66765e033bd81bc2e3195eea Mon Sep 17 00:00:00 2001 From: Matthew Parker Date: Wed, 18 Dec 2024 05:22:06 +0000 Subject: [PATCH 2/2] bump version --- src/PinguApps.Appwrite.Shared/Constants.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PinguApps.Appwrite.Shared/Constants.cs b/src/PinguApps.Appwrite.Shared/Constants.cs index 6cc04017..3641eb4a 100644 --- a/src/PinguApps.Appwrite.Shared/Constants.cs +++ b/src/PinguApps.Appwrite.Shared/Constants.cs @@ -1,5 +1,5 @@ namespace PinguApps.Appwrite.Shared; public static class Constants { - public const string Version = "0.4.3"; + public const string Version = "0.4.4"; }