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.

.NET 9

Christian Klauser (Nov 13, 2024, 7:38 PM +0100) 47933bd2 021aa14d

+4 -4
+1 -1
Prexonite/Prexonite.csproj
··· 2 2 3 3 <PropertyGroup> 4 4 <TargetFramework>net8.0</TargetFramework> 5 - <LangVersion>12</LangVersion> 5 + <LangVersion>preview</LangVersion> 6 6 <Nullable>enable</Nullable> 7 7 <ImplicitUsings>enable</ImplicitUsings> 8 8 <DefineConstants>UseIndex</DefineConstants>
+1 -1
PrexoniteTests/PrexoniteTests.csproj
··· 4 4 <OutputType>Exe</OutputType> 5 5 <IsTestProject>true</IsTestProject> 6 6 <TargetFramework>net8.0</TargetFramework> 7 - <LangVersion>12</LangVersion> 7 + <LangVersion>preview</LangVersion> 8 8 <Nullable>enable</Nullable> 9 9 </PropertyGroup> 10 10
+1 -1
Prx/Prx.csproj
··· 8 8 <OutputType>exe</OutputType> 9 9 <TargetFramework>net8.0</TargetFramework> 10 10 <AppConfig>config/app.$(Configuration).config</AppConfig> 11 - <LangVersion>12</LangVersion> 11 + <LangVersion>preview</LangVersion> 12 12 <Version>1.99</Version> 13 13 <Title>Prexonite CLI</Title> 14 14 <Description>Prexonite command line interpreter and compiler.</Description>
+1 -1
global.json
··· 1 1 { 2 2 "sdk": { 3 - "version": "8.0.300", 3 + "version": "9.0.100", 4 4 "rollForward": "latestFeature" 5 5 } 6 6 }