Skip to content

Commit

Permalink
Improved isolation for msbuild task assembly on netfx.
Browse files Browse the repository at this point in the history
  • Loading branch information
kekyo committed Oct 17, 2023
1 parent 22dce3a commit aa7d51b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion RelaxVersioner.Tasks/DumpPropertiesTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@

namespace RelaxVersioner;

public sealed class DumpPropertiesTask : Task
public sealed class DumpPropertiesTask :
#if NETFRAMEWORK
AppDomainIsolatedTask
#else
Task
#endif
{
[Required]
public string? OutputPath
Expand Down

0 comments on commit aa7d51b

Please sign in to comment.