Skip to content

Commit

Permalink
using Irony through a direct .NET Standard 2.0 dll file instead of a …
Browse files Browse the repository at this point in the history
…nuget package

Sarcasm uses Irony through a direct .NET Standard 2.0 dll file instead of a nuget package, until the following pull request are merged, and a new Irony nuget package is published:

IronyProject/Irony#46
IronyProject/Irony#48
IronyProject/Irony#50
  • Loading branch information
davidnemeti committed Jan 27, 2023
1 parent 4849e13 commit 4c764d3
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 3 deletions.
Binary file added Libraries/Irony.dll
Binary file not shown.
5 changes: 5 additions & 0 deletions Libraries/readme.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Sarcasm uses Irony through a direct .NET Standard 2.0 dll file instead of a nuget package, until the following pull request are merged, and a new Irony nuget package is published:

https://github.com/IronyProject/Irony/pull/46
https://github.com/IronyProject/Irony/pull/48
https://github.com/IronyProject/Irony/pull/50
8 changes: 7 additions & 1 deletion MiniPL/MiniPL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,20 @@
<DependentUpon>CSharpGeneratorTemplate.tt</DependentUpon>
</Compile>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Sarcasm\Sarcasm.csproj">
<Project>{a02fb9de-b174-4438-83af-034f8004c724}</Project>
<Name>Sarcasm</Name>
</ProjectReference>
</ItemGroup>

<ItemGroup>
<Reference Include="Irony">
<HintPath>..\Libraries\Irony.dll</HintPath>
</Reference>
</ItemGroup>

<ItemGroup>
<None Update="MiniPL\CodeGenerators\CppGeneratorTemplate.tt">
<Generator>TextTemplatingFilePreprocessor</Generator>
Expand Down
2 changes: 1 addition & 1 deletion Playground/Playground.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<ItemGroup>
<Reference Include="Irony.PCL">
<Reference Include="Irony">
<HintPath>..\Libraries\Irony.dll</HintPath>
</Reference>
</ItemGroup>
Expand Down
5 changes: 5 additions & 0 deletions Sarcasm.UnitTest/Sarcasm.UnitTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@
<Name>Sarcasm</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Reference Include="Irony">
<HintPath>..\Libraries\Irony.dll</HintPath>
</Reference>
</ItemGroup>

<ItemGroup>
<None Update="Expected results\ASTs\Binary3.json">
Expand Down
7 changes: 6 additions & 1 deletion Sarcasm/Sarcasm.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,19 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Irony" Version="1.1.0" />
<PackageReference Include="IgnoresAccessChecksToGenerator" Version="0.6.0" PrivateAssets="All" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net48' ">
<Reference Include="Microsoft.CSharp" />
</ItemGroup>

<ItemGroup>
<Reference Include="Irony">
<HintPath>..\Libraries\Irony.dll</HintPath>
</Reference>
</ItemGroup>

<ItemGroup>
<Compile Update="GrammarAst\BnfiExpressions\BnfiExpression.generated.cs">
<AutoGen>True</AutoGen>
Expand Down

0 comments on commit 4c764d3

Please sign in to comment.