Neuerstellung

- Quelle: https://github.com/oxyplot/oxyplot
This commit is contained in:
2023-09-02 09:24:59 +02:00
commit 9520c1fa4a
810 changed files with 117869 additions and 0 deletions

34
.github/workflows/dotnetcore.yml vendored Normal file
View File

@@ -0,0 +1,34 @@
name: Build on Windows
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
7.0.x
- name: Build
run: dotnet build Source/OxyPlot.CI.sln --configuration Release
- name: Run unit tests
run: dotnet test Source/OxyPlot.CI.sln --configuration Release
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.1
- name: MSBuild
run: msbuild Source\OxyPlot.CI.sln -p:Configuration=Release