Skip to content

Commit

Permalink
fix merge
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin <[email protected]>
  • Loading branch information
Dindexx committed Aug 14, 2024
1 parent 6233130 commit 2aa1be6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public static SdJwtRecord ToRecord(
{
var claimMetadatas = new Dictionary<string, ClaimMetadata> { { claimMetadata.Key, claimMetadata.Value } };
if (!claimMetadata.Value.NestedClaims.IsNullOrEmpty())
if (!(claimMetadata.Value.NestedClaims == null || claimMetadata.Value.NestedClaims.Count == 0))
{
foreach (var nested in claimMetadata.Value.NestedClaims!)
{
Expand Down
20 changes: 10 additions & 10 deletions src/WalletFramework.Oid4Vc/WalletFramework.Oid4Vc.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
Expand All @@ -15,9 +15,9 @@
</AssemblyAttribute>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Hyperledger.Aries\Hyperledger.Aries.csproj" />
<ProjectReference Include="..\WalletFramework.MdocVc\WalletFramework.MdocVc.csproj" />
<ProjectReference Include="..\WalletFramework.SdJwtVc\WalletFramework.SdJwtVc.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Hyperledger.Aries\Hyperledger.Aries.csproj" />
<ProjectReference Include="..\WalletFramework.MdocVc\WalletFramework.MdocVc.csproj" />
<ProjectReference Include="..\WalletFramework.SdJwtVc\WalletFramework.SdJwtVc.csproj" />
</ItemGroup>
</Project>

0 comments on commit 2aa1be6

Please sign in to comment.