File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : .NET Core
2+
3+ on :
4+ push :
5+ branches : [ master ]
6+ pull_request :
7+ branches : [ master ]
8+
9+ jobs :
10+ build :
11+
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - uses : actions/checkout@v2
16+ - name : Setup .NET Core
17+ uses : actions/setup-dotnet@v1
18+ with :
19+ dotnet-version : 3.1.101
20+ - name : Build with dotnet
21+ run : dotnet build --configuration Release
Original file line number Diff line number Diff line change 88 <PackageTags >readline gnu console shell cui</PackageTags >
99 <PackageProjectUrl >https://github.com/tonerdo/readline</PackageProjectUrl >
1010 <RepositoryType >GIT</RepositoryType >
11- <RepositoryUrl >https://github.com/tonerdo/readline </RepositoryUrl >
11+ <RepositoryUrl >https://github.com/Latency/ReadLine </RepositoryUrl >
1212 <SignAssembly >true</SignAssembly >
1313 <AssemblyOriginatorKeyFile >snKey.snk</AssemblyOriginatorKeyFile >
1414 <GeneratePackageOnBuild >true</GeneratePackageOnBuild >
Original file line number Diff line number Diff line change 33)
44
55dotnet restore
6- dotnet build " .\src\ ReadLine" - c $p1
7- dotnet build " .\src\ ReadLine.Demo" - c $p1
8- dotnet build " .\test\ ReadLine.Tests" - c $p1
6+ dotnet build " .\ReadLine" - c $p1
7+ dotnet build " .\ReadLine.Demo" - c $p1
8+ dotnet build " .\ReadLine.Tests" - c $p1
Original file line number Diff line number Diff line change @@ -9,6 +9,6 @@ if [[ $1 ]]; then
99fi
1010
1111dotnet restore
12- dotnet build ./src/ ReadLine -c $CONFIGURATION
13- dotnet build ./src/ ReadLine.Demo -c $CONFIGURATION
14- dotnet build ./test/ ReadLine.Tests -c $CONFIGURATION
12+ dotnet build ./ReadLine -c $CONFIGURATION
13+ dotnet build ./ReadLine.Demo -c $CONFIGURATION
14+ dotnet build ./ReadLine.Tests -c $CONFIGURATION
Original file line number Diff line number Diff line change 1- dotnet test .\test\ ReadLine.Tests\ReadLine.Tests.csproj
1+ dotnet test .\ReadLine.Tests\ReadLine.Tests.csproj
22if ($LastExitCode -ne 0 ) { $host.SetShouldExit ($LastExitCode ) }
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3- dotnet test ./test/ ReadLine.Tests
3+ dotnet test ./ReadLine.Tests
You can’t perform that action at this time.
0 commit comments