Skip to content

Commit

Permalink
fixup! MSBuild caching
Browse files Browse the repository at this point in the history
  • Loading branch information
adamralph committed Jul 22, 2024
1 parent 0eb02e5 commit b420f31
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions MSBuild.Caching/CacheGet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ namespace MSBuild.Caching;

public class CacheGet : Task
{
[Required]
public string? Key { get; set; }

[Output]
Expand Down
2 changes: 2 additions & 0 deletions MSBuild.Caching/CacheSet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ namespace MSBuild.Caching;

public class CacheSet : Task
{
[Required]
public string? Key { get; set; }

[Required]
public string? Value { get; set; }

public override bool Execute()
Expand Down

0 comments on commit b420f31

Please sign in to comment.