Skip to content

Commit f10250d

Browse files
authored
simplify build process (#102)
1 parent 4ef7ecc commit f10250d

File tree

7 files changed

+7
-541
lines changed

7 files changed

+7
-541
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ jobs:
1414
uses: actions/setup-dotnet@v1
1515
with:
1616
dotnet-version: '3.1.x'
17-
- run: dotnet test src/FluentAssertions.Analyzers.sln --configuration Release --filter 'TestCategory=Completed'
17+
- run: dotnet test src --configuration Release --filter 'TestCategory=Completed'

README.md

Lines changed: 6 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -28,27 +28,16 @@ using the latest prerelease version:
2828
Install-Package FluentAssertions.Analyzers -IncludePrerelease -Source https://ci.appveyor.com/nuget/fluentassertions-bestpractices
2929
```
3030

31-
3231
## Getting Started
3332

3433
### Build
3534

36-
using [cake](https://cakebuild.net/)
37-
38-
#### windows:
39-
40-
```ps1
41-
.\build.ps1
35+
```bash
36+
dotnet build src
4237
```
4338

44-
#### linux
39+
### Tests
4540

46-
```sh
47-
. build.sh
48-
```
49-
50-
### Run Tests
51-
52-
```ps1
53-
.\build.ps1 -Target Run-Unit-Tests
54-
```
41+
```bash
42+
dotnet test src --configuration Release --filter 'TestCategory=Completed'
43+
```

appveyor.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

build.cake

Lines changed: 0 additions & 146 deletions
This file was deleted.

0 commit comments

Comments
 (0)