Skip to content

Commit 5108d6b

Browse files
committed
Updated github actions versions
- Added src/global.json file for global dotnet settings - Added aspnetcore project to spark-spark-pack.slnf - Added package metatags to Spark.AspNetCore.Mvc.csproj
1 parent d2f57e3 commit 5108d6b

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
runs-on: windows-2019
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- name: Setup .NET
20-
uses: actions/setup-dotnet@v3
20+
uses: actions/setup-dotnet@v4
2121
with:
2222
dotnet-version: 8.0.x
2323
- name: Restore dependencies

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

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
2-
2+
<PropertyGroup>
3+
<SignAssembly>False</SignAssembly>
4+
<AssemblyOriginatorKeyFile>..\SparkKey.snk</AssemblyOriginatorKeyFile>
5+
<Company>Louis DeJardin</Company>
6+
<PackageProjectUrl>https://github.com/SparkViewEngine/</PackageProjectUrl>
7+
<PackageReadmeFile>README.md</PackageReadmeFile>
8+
<RepositoryUrl>https://github.com/SparkViewEngine/spark</RepositoryUrl>
9+
<RepositoryType>git</RepositoryType>
10+
<IncludeSymbols>True</IncludeSymbols>
11+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
12+
<PackageLicenseFile>license.txt</PackageLicenseFile>
13+
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
14+
<PackageTags>spark;view engine</PackageTags>
15+
<Copyright>Copyright (c) Louis DeJardin 2008-2024</Copyright>
16+
<Description>Spark is a view engine allowing the HTML to dominate the flow and any code to fit seamlessly.</Description>
17+
</PropertyGroup>
318
<PropertyGroup>
419
<TargetFramework>net8.0</TargetFramework>
520
<ImplicitUsings>enable</ImplicitUsings>

src/global.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"sdk": {
3+
"rollForward": "feature",
4+
"version": "8.0.400"
5+
}
6+
}

src/spark-pack.slnf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"solution": {
33
"path": "Spark.sln",
44
"projects": [
5+
"Spark.AspNetCore.Mvc\\Spark.AspNetCore.Mvc.csproj",
56
"Spark.Web.Mvc\\Spark.Web.Mvc.csproj",
67
"Spark.Web\\Spark.Web.csproj",
78
"Spark\\Spark.csproj"

0 commit comments

Comments
 (0)