Skip to content

remove check for no contraint. We have always a constraint now with e… #63

remove check for no contraint. We have always a constraint now with e…

remove check for no contraint. We have always a constraint now with e… #63

Workflow file for this run

name: .NET 10 CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
name: Build and Test
steps:
- uses: actions/checkout@v5
- uses: actions/setup-dotnet@v5
name: Setup .NET SDK
with:
dotnet-version: '10.0.x'
- name: Build
run: dotnet build src/Ninject.Web.AspNetCore.sln -c Release
- name: Test
run: dotnet test src/Ninject.Web.AspNetCore.sln -c Release