Skip to content

Commit

Permalink
Merge pull request #574 from PinguApps/573-bug-unable-to-access-share…
Browse files Browse the repository at this point in the history
…d-models

Changed private references to shared model to enable ability to reference public classes again
  • Loading branch information
pingu2k4 authored Dec 18, 2024
2 parents 4666423 + 8df94be commit ebe6782
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@
</ItemGroup>

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

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@
</ItemGroup>

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

<ItemGroup>
Expand Down
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.2";
public const string Version = "0.4.3";
}

0 comments on commit ebe6782

Please sign in to comment.