Skip to content

Commit

Permalink
Small refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
linkdotnet committed Apr 25, 2024
1 parent 0dfaa4f commit a3cf65a
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,8 @@ private static string GetProjectDirectory(AnalyzerConfigOptionsProvider analyzer
: projectDir;
}

private static string GetLanguageVersionString()
{
return CSharpParseOptions.Default.Language + " " + CSharpParseOptions.Default.LanguageVersion.ToDisplayString();
}
private static string GetLanguageVersionString()
=> CSharpParseOptions.Default.Language + " " + CSharpParseOptions.Default.LanguageVersion.ToDisplayString();

private static string GenerateBuildInformationClass(BuildInformationInfo buildInformation)
{
Expand Down

0 comments on commit a3cf65a

Please sign in to comment.