Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build

on:
workflow_call:

jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v6

- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x

- name: Build
run: dotnet build Examples.slnx --configuration Release
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Continuous Integration

on:
push:
branches:
- master
- develop
- "feature/**"
pull_request:
branches:
- develop

jobs:
build:
uses: ./.github/workflows/build.yml
21 changes: 21 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "3e8a8703264a2f4a69428a0aa4dcb512790b2c8c" # frozen: v6.0.0
hooks:
- id: check-json
- id: check-yaml
- id: check-merge-conflict
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: "e72a3ca1632f0b11a07d171449fe447a7ff6795e" # frozen: v0.48.0
hooks:
- id: markdownlint
args:
- --fix
- repo: https://github.com/tillig/json-sort-cli
rev: "2b7e147e0933bd30b58133b6f287e5c695ff4f0e" # frozen: v3.0.1
hooks:
- id: json-sort
args:
- --autofix
48 changes: 24 additions & 24 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"tasks": [
{
"args": [
"build",
"Examples.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"command": "dotnet",
"group": {
"isDefault": true,
"kind": "build"
},
"label": "build",
"presentation": {
"reveal": "silent"
},
"problemMatcher": "$msCompile",
"type": "shell"
}
],
"version": "2.0.0"
}
{
"tasks": [
{
"args": [
"build",
"Examples.slnx",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"command": "dotnet",
"group": {
"isDefault": true,
"kind": "build"
},
"label": "build",
"presentation": {
"reveal": "silent"
},
"problemMatcher": "$msCompile",
"type": "shell"
}
],
"version": "2.0.0"
}
202 changes: 0 additions & 202 deletions Examples.sln

This file was deleted.

19 changes: 19 additions & 0 deletions Examples.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<Solution>
<Folder Name="/src/">
<Project Path="src/AspNetCoreChildLifetimeScope/AspNetCoreChildLifetimeScope.csproj" />
<Project Path="src/AspNetCoreExample/AspNetCoreExample.csproj" />
<Project Path="src/AspNetCoreNoStartupExample/AspNetCoreNoStartupExample.csproj" />
<Project Path="src/AttributeMetadataExample/AttributeMetadataExample.csproj" />
<Project Path="src/ConfigurationExample/ConfigurationExample.csproj" />
<Project Path="src/ConfigurationExampleInterface/ConfigurationExampleInterface.csproj" />
<Project Path="src/ConfigurationExamplePlugin/ConfigurationExamplePlugin.csproj" />
<Project Path="src/GenericHostBuilderExample/GenericHostBuilderExample.csproj" />
<Project Path="src/MultitenantExample.ConsoleApplication/MultitenantExample.ConsoleApplication.csproj" />
<Project Path="src/MultitenantExample.MvcApplication/MultitenantExample.MvcApplication.csproj" />
<Project Path="src/MultitenantExample.WcfService/MultitenantExample.WcfService.csproj" />
<Project Path="src/MvcExample/MvcExample.csproj" />
<Project Path="src/WcfExample/WcfExample.csproj" />
<Project Path="src/WebApiExample.OwinSelfHost/WebApiExample.OwinSelfHost.csproj" />
<Project Path="src/WebFormsExample/WebFormsExample.csproj" />
</Folder>
</Solution>
11 changes: 0 additions & 11 deletions NuGet.Config

This file was deleted.

19 changes: 0 additions & 19 deletions appveyor.yml

This file was deleted.

Loading
Loading