Skip to content

Commit 4c4ac54

Browse files
committed
Now also targetting .net 9.0
- Updated various Microsoft dependencies
1 parent 35f57e8 commit 4c4ac54

File tree

4 files changed

+10
-15
lines changed

4 files changed

+10
-15
lines changed

src/Spark.AspNetCore.Mvc/Spark.AspNetCore.Mvc.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,21 @@
1616
<Description>Spark is a view engine allowing the HTML to dominate the flow and any code to fit seamlessly.</Description>
1717
</PropertyGroup>
1818
<PropertyGroup>
19-
<TargetFramework>net8.0</TargetFramework>
19+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
2020
<ImplicitUsings>enable</ImplicitUsings>
2121
<Nullable>enable</Nullable>
2222
</PropertyGroup>
2323

2424
<ItemGroup>
25-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" />
26-
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.0" />
25+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" />
26+
<PackageReference Include="System.Configuration.ConfigurationManager" Version="9.0.0" />
2727
</ItemGroup>
2828

2929
<ItemGroup>
3030
<ProjectReference Include="..\Spark\Spark.csproj" />
3131
</ItemGroup>
3232

33+
3334
<ItemGroup>
3435
<None Include="..\..\license.txt">
3536
<Pack>True</Pack>

src/Spark.Web.Mvc/Spark.Web.Mvc.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@
5555
<ItemGroup>
5656
<PackageReference Include="Microsoft.AspNet.Mvc" Version="5.3.0" />
5757
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
58-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
58+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
5959
</ItemGroup>
6060
</Project>

src/Spark/Spark.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Library</OutputType>
4-
<TargetFrameworks>net48;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net48;net8.0;net9.0</TargetFrameworks>
55
<LangVersion>latest</LangVersion>
66
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
77
<SignAssembly>False</SignAssembly>
@@ -26,11 +26,11 @@
2626
</PropertyGroup>
2727
<ItemGroup>
2828
<PackageReference Include="MarkdownSharp" Version="2.0.5" />
29-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" />
30-
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic" Version="4.8.0" />
31-
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.0" />
29+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" />
30+
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic" Version="4.12.0" />
31+
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.0" />
3232
<PackageReference Include="System.CodeDom" Version="8.0.0" Condition="'${TargetFramework}' == 'net48'" />
33-
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.0" />
33+
<PackageReference Include="System.Configuration.ConfigurationManager" Version="9.0.0" />
3434
</ItemGroup>
3535
<ItemGroup>
3636
<Compile Remove="Compiler\NodeVisitors\FileReferenceVisitor.cs" />

src/global.json

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

0 commit comments

Comments
 (0)