|
5 | 5 | <RootNamespace>Sarcasm</RootNamespace>
|
6 | 6 | <AssemblyName>Sarcasm</AssemblyName>
|
7 | 7 | <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> |
9 | 9 | <Authors>Dávid Németi</Authors>
|
10 | 10 | <PackageTags>Parser;Unparser;Grammar;AST;DomainBinding;Typesafety;CompileTimeSafety</PackageTags>
|
11 | 11 | <PackageLicenseExpression>LGPL-3.0-only</PackageLicenseExpression>
|
|
18 | 18 | <NoWarn>CS1591,CS0618</NoWarn>
|
19 | 19 | <SignAssembly>true</SignAssembly>
|
20 | 20 | <AssemblyOriginatorKeyFile>Signature\Sarcasm.snk</AssemblyOriginatorKeyFile>
|
21 |
| - <TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);GetMyPackageFiles</TargetsForTfmSpecificBuildOutput> |
22 | 21 | <!--<TransformOnBuild>true</TransformOnBuild>
|
23 | 22 | <TransformOutOfDateOnly>true</TransformOutOfDateOnly>
|
24 | 23 | <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>-->
|
|
31 | 30 | <ItemGroup>
|
32 | 31 | <!--
|
33 | 32 | 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 |
35 | 34 | - IgnoresAccessChecksToGenerator cannot publicize private members
|
36 | 35 | -->
|
37 | 36 | <PackageReference Include="Krafs.Publicizer" Version="2.2.1">
|
38 | 37 | <PrivateAssets>all</PrivateAssets>
|
39 | 38 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
40 | 39 | </PackageReference>
|
| 40 | + <PackageReference Include="Irony" Version="1.2.0" /> |
41 | 41 | </ItemGroup>
|
42 | 42 |
|
43 | 43 | <ItemGroup Condition=" '$(TargetFramework)' == 'net48' ">
|
44 | 44 | <Reference Include="Microsoft.CSharp" />
|
45 | 45 | </ItemGroup>
|
46 | 46 |
|
47 |
| - <ItemGroup> |
48 |
| - <Reference Include="Irony"> |
49 |
| - <HintPath>..\Libraries\Irony.dll</HintPath> |
50 |
| - </Reference> |
51 |
| - </ItemGroup> |
52 |
| - |
53 | 47 | <ItemGroup>
|
54 | 48 | <None Include="..\README.md" Pack="true" PackagePath="\" />
|
55 | 49 | </ItemGroup>
|
56 | 50 |
|
57 |
| - <Target Name="GetMyPackageFiles"> |
58 |
| - <ItemGroup> |
59 |
| - <BuildOutputInPackage Include="..\Libraries\Irony.dll" /> |
60 |
| - </ItemGroup> |
61 |
| - </Target> |
62 |
| - |
63 | 51 | <ItemGroup>
|
64 | 52 | <Compile Update="GrammarAst\BnfiExpressions\BnfiExpression.generated.cs">
|
65 | 53 | <AutoGen>True</AutoGen>
|
|
0 commit comments