Skip to content

Commit

Permalink
chore: move solution file to root (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
Meir017 authored Jun 8, 2023
1 parent b7d342d commit 381ebac
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- run: dotnet test src --configuration Release --filter 'TestCategory=Completed'
- run: dotnet test --configuration Release --filter 'TestCategory=Completed'
- run: dotnet pack src/FluentAssertions.Analyzers/FluentAssertions.Analyzers.csproj
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
dotnet-version: '6.x'

- name: Restore dependencies
run: dotnet restore src
run: dotnet restore

- name: Build & Pack NuGet package
shell: pwsh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27004.2002
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FluentAssertions.Analyzers.Tests", "FluentAssertions.Analyzers.Tests\FluentAssertions.Analyzers.Tests.csproj", "{979824BD-5936-4969-B43B-BF613B3C0C5F}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FluentAssertions.Analyzers.Tests", "src\FluentAssertions.Analyzers.Tests\FluentAssertions.Analyzers.Tests.csproj", "{979824BD-5936-4969-B43B-BF613B3C0C5F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SolutionItems", "SolutionItems", "{1D2F0A0B-7B98-49D6-BD83-E750A2DD7FD0}"
ProjectSection(SolutionItems) = preProject
..\.gitattributes = ..\.gitattributes
..\.gitignore = ..\.gitignore
..\.github\workflows\ci.yml = ..\.github\workflows\ci.yml
..\LICENSE = ..\LICENSE
..\README.md = ..\README.md
.gitattributes = .gitattributes
.gitignore = .gitignore
.github\workflows\ci.yml = .github\workflows\ci.yml
LICENSE = LICENSE
README.md = README.md
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FluentAssertions.Analyzers", "FluentAssertions.Analyzers\FluentAssertions.Analyzers.csproj", "{3BA672F7-00D8-4E77-89A0-D46DD99D35AA}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FluentAssertions.Analyzers", "src\FluentAssertions.Analyzers\FluentAssertions.Analyzers.csproj", "{3BA672F7-00D8-4E77-89A0-D46DD99D35AA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ Install-Package FluentAssertions.Analyzers
### Build

```bash
dotnet build src
dotnet build
```

### Tests

```bash
dotnet test src --configuration Release --filter 'TestCategory=Completed'
dotnet test --configuration Release --filter 'TestCategory=Completed'
```

## Example Usages
Expand Down

0 comments on commit 381ebac

Please sign in to comment.