Skip to content

Commit

Permalink
Merge pull request #579 from PinguApps/dev
Browse files Browse the repository at this point in the history
Merge v0.4.4
  • Loading branch information
pingu2k4 authored Dec 18, 2024
2 parents 4d2d27b + 03a9560 commit b846635
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
11 changes: 10 additions & 1 deletion src/PinguApps.Appwrite.Client/PinguApps.Appwrite.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
<Company>PinguApps</Company>
<Description>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.</Description>
<Copyright>Copyright 2024 (c) Pingu. All rights reserved.</Copyright>

<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);CopyProjectReferencesToPackage</TargetsForTfmSpecificBuildOutput>
</PropertyGroup>

<ItemGroup>
Expand All @@ -33,7 +35,8 @@

<ItemGroup>
<ProjectReference Include="..\PinguApps.Appwrite.Shared\PinguApps.Appwrite.Shared.csproj">
<PrivateAssets>runtime; build; native; contentfiles; analyzers</PrivateAssets>
<ReferenceOutputAssembly>true</ReferenceOutputAssembly>
<IncludeAssets>PinguApps.Appwrite.Shared.dll</IncludeAssets>
</ProjectReference>
</ItemGroup>

Expand All @@ -42,4 +45,10 @@
<None Include="..\..\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>

<Target DependsOnTargets="ResolveReferences" Name="CopyProjectReferencesToPackage">
<ItemGroup>
<BuildOutputInPackage Include="@(ReferenceCopyLocalPaths->WithMetadataValue('ReferenceSourceTarget', 'ProjectReference'))"/>
</ItemGroup>
</Target>

</Project>
11 changes: 10 additions & 1 deletion src/PinguApps.Appwrite.Server/PinguApps.Appwrite.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
<Company>PinguApps</Company>
<Description>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.</Description>
<Copyright>Copyright 2024 (c) Pingu. All rights reserved.</Copyright>

<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);CopyProjectReferencesToPackage</TargetsForTfmSpecificBuildOutput>
</PropertyGroup>

<ItemGroup>
Expand All @@ -33,7 +35,8 @@

<ItemGroup>
<ProjectReference Include="..\PinguApps.Appwrite.Shared\PinguApps.Appwrite.Shared.csproj">
<PrivateAssets>runtime; build; native; contentfiles; analyzers</PrivateAssets>
<ReferenceOutputAssembly>true</ReferenceOutputAssembly>
<IncludeAssets>PinguApps.Appwrite.Shared.dll</IncludeAssets>
</ProjectReference>
</ItemGroup>

Expand All @@ -42,4 +45,10 @@
<None Include="..\..\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>

<Target DependsOnTargets="ResolveReferences" Name="CopyProjectReferencesToPackage">
<ItemGroup>
<BuildOutputInPackage Include="@(ReferenceCopyLocalPaths->WithMetadataValue('ReferenceSourceTarget', 'ProjectReference'))"/>
</ItemGroup>
</Target>

</Project>
2 changes: 1 addition & 1 deletion src/PinguApps.Appwrite.Shared/Constants.cs
Original file line number Diff line number Diff line change
@@ -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";
}

0 comments on commit b846635

Please sign in to comment.