From 55b2a932d6285419147c4b9ce163018f52f95f45 Mon Sep 17 00:00:00 2001 From: Mikhail <mikes22@yandex.ru> Date: Sat, 17 Oct 2020 20:08:07 +0300 Subject: [PATCH] Fix GeneratedLexer build on macOS Looks like there was useless, but seemed harmless call 'dir', somehow invisible for MSVS, which stopped proj from building on macOS, removed it. This change doesn't affect build on Windows and shouldn't affect Linux. --- Module3/GeneratedLexer.csproj | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Module3/GeneratedLexer.csproj b/Module3/GeneratedLexer.csproj index ec72015..94cd9c9 100644 --- a/Module3/GeneratedLexer.csproj +++ b/Module3/GeneratedLexer.csproj @@ -98,7 +98,4 @@ <ProjectExtensions> <VisualStudio AllowExistingFolder="true" /> </ProjectExtensions> - <PropertyGroup> - <PreBuildEvent>dir</PreBuildEvent> - </PropertyGroup> -</Project> \ No newline at end of file +</Project> -- GitLab