mirror of
https://github.com/actions/runner.git
synced 2025-12-19 00:36:55 +00:00
GitHub Actions Runner
This commit is contained in:
23
src/Sdk/DTExpressions2/Expressions2/EvaluationOptions.cs
Normal file
23
src/Sdk/DTExpressions2/Expressions2/EvaluationOptions.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace GitHub.DistributedTask.Expressions2
|
||||
{
|
||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||
public sealed class EvaluationOptions
|
||||
{
|
||||
public EvaluationOptions()
|
||||
{
|
||||
}
|
||||
|
||||
public EvaluationOptions(EvaluationOptions copy)
|
||||
{
|
||||
if (copy != null)
|
||||
{
|
||||
MaxMemory = copy.MaxMemory;
|
||||
}
|
||||
}
|
||||
|
||||
public Int32 MaxMemory { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user