Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFrameworks>netcoreapp3.1;net6</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>

Expand Down
4 changes: 3 additions & 1 deletion WindowsCredentialManager/Win32/Types/CREDENTIALW.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
using System.Runtime.InteropServices.ComTypes;

namespace WindowsCredentialManager.Win32.Types
{
using System;
Expand All @@ -10,7 +12,7 @@ internal struct CREDENTIALW
public CREDENTIAL_TYPE Type;
[MarshalAs (UnmanagedType.LPWStr)] public string TargetName;
[MarshalAs (UnmanagedType.LPWStr)] public string? Comment;
public DateTimeOffset LastWritten;
public FILETIME LastWritten;
public int BlobSize;
public SecureBlob? Blob;
public CREDENTIAL_PERSIST Persist;
Expand Down