sirh3e
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
6 deletions
-
src/Microsoft.Tye.Core/Project.cs
|
|
|
@ -10,12 +10,7 @@ namespace Microsoft.Tye |
|
|
|
{ |
|
|
|
public Project(string relativeFilePath) |
|
|
|
{ |
|
|
|
if (relativeFilePath is null) |
|
|
|
{ |
|
|
|
throw new ArgumentNullException(nameof(relativeFilePath)); |
|
|
|
} |
|
|
|
|
|
|
|
RelativeFilePath = relativeFilePath; |
|
|
|
RelativeFilePath = relativeFilePath ?? throw new ArgumentNullException(nameof(relativeFilePath)); |
|
|
|
} |
|
|
|
|
|
|
|
public string RelativeFilePath { get; } |
|
|
|
|