Skip to content

Commit 29de40c

Browse files
committed
using the newest Irony nuget package instead of using Irony.dll directly
1 parent ccb6927 commit 29de40c

File tree

6 files changed

+4
-38
lines changed

6 files changed

+4
-38
lines changed

Libraries/Irony.dll

-142 KB
Binary file not shown.

Libraries/readme.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.

MiniPL/MiniPL.csproj

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,6 @@
3333
</ProjectReference>
3434
</ItemGroup>
3535

36-
<ItemGroup>
37-
<Reference Include="Irony">
38-
<HintPath>..\Libraries\Irony.dll</HintPath>
39-
</Reference>
40-
</ItemGroup>
41-
4236
<ItemGroup>
4337
<None Update="MiniPL\CodeGenerators\CppGeneratorTemplate.tt">
4438
<Generator>TextTemplatingFilePreprocessor</Generator>

Playground/Playground.csproj

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,6 @@
88
<IsPackable>false</IsPackable>
99
</PropertyGroup>
1010

11-
<ItemGroup>
12-
<Reference Include="Irony">
13-
<HintPath>..\Libraries\Irony.dll</HintPath>
14-
</Reference>
15-
</ItemGroup>
16-
1711
<ItemGroup>
1812
<None Update="MiniPL_long.mplp">
1913
<AutoGen>True</AutoGen>

Sarcasm.UnitTest/Sarcasm.UnitTest.csproj

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,7 @@
4848
<Name>Sarcasm</Name>
4949
</ProjectReference>
5050
</ItemGroup>
51-
<ItemGroup>
52-
<Reference Include="Irony">
53-
<HintPath>..\Libraries\Irony.dll</HintPath>
54-
</Reference>
55-
</ItemGroup>
56-
51+
5752
<ItemGroup>
5853
<None Update="Expected results\ASTs\Binary3.json">
5954
<CopyToOutputDirectory>Always</CopyToOutputDirectory>

Sarcasm/Sarcasm.csproj

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<RootNamespace>Sarcasm</RootNamespace>
66
<AssemblyName>Sarcasm</AssemblyName>
77
<Description>SDK for creating typesafe and typeless domain bound grammar and using the general unparser</Description>
8-
<Version>4.0.0</Version>
8+
<Version>4.1.0</Version>
99
<Authors>Dávid Németi</Authors>
1010
<PackageTags>Parser;Unparser;Grammar;AST;DomainBinding;Typesafety;CompileTimeSafety</PackageTags>
1111
<PackageLicenseExpression>LGPL-3.0-only</PackageLicenseExpression>
@@ -18,7 +18,6 @@
1818
<NoWarn>CS1591,CS0618</NoWarn>
1919
<SignAssembly>true</SignAssembly>
2020
<AssemblyOriginatorKeyFile>Signature\Sarcasm.snk</AssemblyOriginatorKeyFile>
21-
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);GetMyPackageFiles</TargetsForTfmSpecificBuildOutput>
2221
<!--<TransformOnBuild>true</TransformOnBuild>
2322
<TransformOutOfDateOnly>true</TransformOutOfDateOnly>
2423
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>-->
@@ -31,35 +30,24 @@
3130
<ItemGroup>
3231
<!--
3332
using Krafs.Publicizer instead of IgnoresAccessChecksToGenerator, because:
34-
- IgnoresAccessChecksToGenerator raised error when processing netstandard2.0 Irony.dll
33+
- IgnoresAccessChecksToGenerator raised error when processing the netstandard2.0 version of Irony.dll
3534
- IgnoresAccessChecksToGenerator cannot publicize private members
3635
-->
3736
<PackageReference Include="Krafs.Publicizer" Version="2.2.1">
3837
<PrivateAssets>all</PrivateAssets>
3938
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
4039
</PackageReference>
40+
<PackageReference Include="Irony" Version="1.2.0" />
4141
</ItemGroup>
4242

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

47-
<ItemGroup>
48-
<Reference Include="Irony">
49-
<HintPath>..\Libraries\Irony.dll</HintPath>
50-
</Reference>
51-
</ItemGroup>
52-
5347
<ItemGroup>
5448
<None Include="..\README.md" Pack="true" PackagePath="\" />
5549
</ItemGroup>
5650

57-
<Target Name="GetMyPackageFiles">
58-
<ItemGroup>
59-
<BuildOutputInPackage Include="..\Libraries\Irony.dll" />
60-
</ItemGroup>
61-
</Target>
62-
6351
<ItemGroup>
6452
<Compile Update="GrammarAst\BnfiExpressions\BnfiExpression.generated.cs">
6553
<AutoGen>True</AutoGen>

0 commit comments

Comments
 (0)