Skip to content

Commit

Permalink
Revert "remove reference to sly.csproj"
Browse files Browse the repository at this point in the history
This reverts commit 841f0a3.
  • Loading branch information
b3b00 committed Jan 31, 2023
1 parent 841f0a3 commit 9e11267
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions ParserTests/ParserTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
<ProjectReference Include="..\samples\SimpleTemplate\SimpleTemplate.csproj" />
<ProjectReference Include="..\samples\while\while.csproj" />
<ProjectReference Include="..\samples\XML\XML.csproj" />
<ProjectReference Include="..\sly\sly.csproj" />
<ProjectReference Include="..\samples\expressionParser\expressionParser.csproj" />
<ProjectReference Include="..\samples\jsonparser\jsonparser.csproj" />
</ItemGroup>
Expand Down
4 changes: 4 additions & 0 deletions benchCurrent/benchCurrent.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,8 @@
<EmbeddedResource Remove="BenchmarkDotNet.Artifacts\**" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\sly\sly.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\sly\sly.csproj" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1705;1591</NoWarn>
</PropertyGroup>
Expand Down
1 change: 1 addition & 0 deletions samples/IndentedWhile/indentedWhile.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<RootNamespace>csly.indentedWhileLang</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\sly\sly.csproj" />
<ProjectReference Include="..\while\while.csproj" />
</ItemGroup>
<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions samples/ParserExample/ParserExample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
<ProjectReference Include="..\IndentedWhile\indentedWhile.csproj" />
<ProjectReference Include="..\indented\indented.csproj" />
<ProjectReference Include="..\jsonparser\jsonparser.csproj" />
<ProjectReference Include="..\..\sly\sly.csproj" />
<ProjectReference Include="..\postProcessedLexerParser\postProcessedLexerParser.csproj" />
<ProjectReference Include="..\SimpleExpressionParser\SimpleExpressionParser.csproj" />
<ProjectReference Include="..\SimpleTemplate\SimpleTemplate.csproj" />
Expand Down
3 changes: 3 additions & 0 deletions samples/expressionParser/expressionParser.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
<Authors>b3b00</Authors>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\sly\sly.csproj" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1705;1591</NoWarn>
</PropertyGroup>
Expand Down
4 changes: 4 additions & 0 deletions samples/indented/indented.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,8 @@
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\sly\sly.csproj" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions samples/jsonparser/jsonparser.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
<TargetFramework>net6.0</TargetFramework>
<Authors>b3b00</Authors>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\sly\sly.csproj" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1705;1591</NoWarn>
</PropertyGroup>
Expand Down

0 comments on commit 9e11267

Please sign in to comment.