Prexonite, a .NET hosted scripting language with a focus on meta-programming and embedded DSLs
0

Configure Feed

Select the types of activity you want to include in your feed.

PRX-58: PxCoco release 1.98.0

Christian Klauser (Nov 14, 2021, 4:12 PM +0100) 1484492e d202861b

+10 -3
+9 -2
.github/workflows/PxCocoRelease.yml
··· 28 28 Write-Host "::set-output name=version::$ver" 29 29 Write-Host Version: $ver 30 30 - uses: actions/checkout@v2 31 - - name: Setup .NET Core SDK 31 + - name: Setup .NET 6 SDK 32 + uses: actions/setup-dotnet@v1.7.2 33 + env: 34 + NUGET_AUTH_TOKEN: '${{secrets.GITHUB_TOKEN}}' 35 + with: 36 + dotnet-version: '6.0.x' 37 + source-url: 'https://nuget.pkg.github.com/chklauser/index.json' 38 + - name: Setup .NET 5 SDK (for T4) 32 39 uses: actions/setup-dotnet@v1.7.2 33 40 env: 34 - NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} 41 + NUGET_AUTH_TOKEN: '${{secrets.GITHUB_TOKEN}}' 35 42 with: 36 43 dotnet-version: '5.0.x' 37 44 source-url: 'https://nuget.pkg.github.com/chklauser/index.json'
+1 -1
PxCoco/PxCoco.csproj
··· 9 9 <PropertyGroup> 10 10 <IsPackable>true</IsPackable> 11 11 <IsTool>true</IsTool> 12 - <Version>1.95.0</Version> 12 + <Version>1.98.0</Version> 13 13 <Title>Prexonite Coco/R</Title> 14 14 <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> 15 15 <Description>$(PackageDescription)</Description>