From b086873195da37c822d6a2284246653869316d40 Mon Sep 17 00:00:00 2001 From: rameel Date: Thu, 20 Feb 2025 23:36:31 +0500 Subject: [PATCH 1/2] Formatting --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2bb464e..cfc1920 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ allowing dynamic evaluation and binding of expressions with context-aware suppor ## Getting Started To install the `Ramstack.ExpressionParser` [NuGet package](https://www.nuget.org/packages/Ramstack.ExpressionParser) to your project, run the following command: + ```shell dotnet add package Ramstack.ExpressionParser ``` From 43e9c3495f718e938cbbd930009fefb5a2fc0386 Mon Sep 17 00:00:00 2001 From: rameel Date: Thu, 20 Feb 2025 23:41:18 +0500 Subject: [PATCH 2/2] Fix nullable warnings in tests --- tests/Rmastack.ExpressionParser.Tests/ExpressionParserTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Rmastack.ExpressionParser.Tests/ExpressionParserTest.cs b/tests/Rmastack.ExpressionParser.Tests/ExpressionParserTest.cs index 1c0f34f..10984d0 100644 --- a/tests/Rmastack.ExpressionParser.Tests/ExpressionParserTest.cs +++ b/tests/Rmastack.ExpressionParser.Tests/ExpressionParserTest.cs @@ -114,7 +114,7 @@ private static List GetResource(string resourceName) public class UserInfo { - public string Name { get; set; } - public string LastName { get; set; } + public string? Name { get; set; } + public string? LastName { get; set; } } }