···4949 throw new ArgumentException($"The string {name} is not a valid module name.");
5050 }
51515252+ public override string Description => $"depends on {_dependency}";
5353+5254 public override ConstraintResult ApplyTo<TActual>(TActual actual)
5355 {
5456 var actualValue = actual;
···2233 <PropertyGroup>
44 <OutputType>Exe</OutputType>
55+ <!-- Override defaults from Directory.Build.props for legacy project -->
56 <TargetFrameworks>net6.0;net48</TargetFrameworks>
67 <LangVersion>7.3</LangVersion>
88+ <Nullable>disable</Nullable>
99+ <ImplicitUsings>disable</ImplicitUsings>
710 </PropertyGroup>
811912 <PropertyGroup>
1013 <IsPackable>true</IsPackable>
1114 <IsTool>true</IsTool>
1212- <Version>1.99.0</Version>
1315 <Title>Prexonite Coco/R</Title>
1416 <PackageDescription>Coco/R is a compiler generator, which takes an attributed grammar of a source language and generates a scanner and a parser for this language. The scanner works as a deterministic finite automaton. The parser uses recursive descent. LL(1) conflicts can be resolved by a multi-symbol lookahead or by semantic checks. Thus the class of accepted grammars is LL(k) for an arbitrary k. The 'Prexonite' version is slightly modified and extended with MSBuild tasks.</PackageDescription>
1517 <Description>$(PackageDescription)</Description>
1618 <Copyright>Copyright (c) 1990, 2005 Hanspeter Moessenboeck, University of Linz
1719extended by M. Loeberbauer & A. Woess, Univ. of Linz
1820with improvements by Pat Terry, Rhodes University. Prexonite extensions by Christian Klauser</Copyright>
1919- <IncludeSymbols>true</IncludeSymbols>
2020- <IncludeSource>true</IncludeSource>
2121- <SymbolPackageFormat>snupkg</SymbolPackageFormat>
2222- <RepositoryUrl>https://github.com/chklauser/prx.git</RepositoryUrl>
2323- <RepositoryType>git</RepositoryType>
2424-2525- <Product>Prexonite</Product>
2626- <Company>$(Product)</Company>
2727- <NeutralLanguage>en-US</NeutralLanguage>
28212922 <!-- Suppresses the warnings about the package not having assemblies in lib/*/.dll.-->
3023 <NoPackageAnalysis>true</NoPackageAnalysis>
···4336</ItemGroup>
44374538 <ItemGroup>
4646- <PackageReference Include="Microsoft.Build.Framework" Version="17.10.4" />
4747- <PackageReference Include="Microsoft.Build.Utilities.Core" Version="17.10.4" />
3939+ <PackageReference Include="Microsoft.Build.Framework" />
4040+ <PackageReference Include="Microsoft.Build.Utilities.Core" />
4841 <!-- marks all packages as 'local only' so they don't end up in the nuspec -->
4942 <PackageReference Update="@(PackageReference)" PrivateAssets="All" />
5043 </ItemGroup>