Skip to content

Secret`1.cs: Introduction of ReadOnlySpans and Spans #434

Secret`1.cs: Introduction of ReadOnlySpans and Spans

Secret`1.cs: Introduction of ReadOnlySpans and Spans #434

Workflow file for this run

name: SecretSharingDotNet .NET FX
on:
push:
branches:
- '*'
tags-ignore:
- '*'
paths-ignore:
- '**.md'
jobs:
build:
runs-on: windows-2019
steps:
- name: checkout
uses: actions/checkout@v4
- name: Setup Nuget.exe
uses: nuget/[email protected]
with:
nuget-version: latest
- name: Nuget Restore
run: nuget restore $Env:GITHUB_WORKSPACE\SecretSharingDotNetFx4.6.2.sln
- name: Build with mbsuild
run: |
cd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\"
.\MSBuild.exe /p:Configuration=Release $Env:GITHUB_WORKSPACE\SecretSharingDotNetFx4.6.2.sln
- name: Test with xUnit.net console runner
run: |
cd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\"
.\MSBuild.exe /p:Configuration=Release $Env:GITHUB_WORKSPACE\tests\SecretSharingDotNetFx4.6.2Test.csproj /t:Test