Skip to content

Commit 381ebac

Browse files
authored
chore: move solution file to root (#197)
1 parent b7d342d commit 381ebac

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ jobs:
2020
uses: actions/setup-dotnet@v3
2121
with:
2222
dotnet-version: 6.0.x
23-
- run: dotnet test src --configuration Release --filter 'TestCategory=Completed'
23+
- run: dotnet test --configuration Release --filter 'TestCategory=Completed'
2424
- run: dotnet pack src/FluentAssertions.Analyzers/FluentAssertions.Analyzers.csproj

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
dotnet-version: '6.x'
1919

2020
- name: Restore dependencies
21-
run: dotnet restore src
21+
run: dotnet restore
2222

2323
- name: Build & Pack NuGet package
2424
shell: pwsh

src/FluentAssertions.Analyzers.sln renamed to FluentAssertions.Analyzers.sln

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 15
33
VisualStudioVersion = 15.0.27004.2002
44
MinimumVisualStudioVersion = 10.0.40219.1
5-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FluentAssertions.Analyzers.Tests", "FluentAssertions.Analyzers.Tests\FluentAssertions.Analyzers.Tests.csproj", "{979824BD-5936-4969-B43B-BF613B3C0C5F}"
5+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FluentAssertions.Analyzers.Tests", "src\FluentAssertions.Analyzers.Tests\FluentAssertions.Analyzers.Tests.csproj", "{979824BD-5936-4969-B43B-BF613B3C0C5F}"
66
EndProject
77
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SolutionItems", "SolutionItems", "{1D2F0A0B-7B98-49D6-BD83-E750A2DD7FD0}"
88
ProjectSection(SolutionItems) = preProject
9-
..\.gitattributes = ..\.gitattributes
10-
..\.gitignore = ..\.gitignore
11-
..\.github\workflows\ci.yml = ..\.github\workflows\ci.yml
12-
..\LICENSE = ..\LICENSE
13-
..\README.md = ..\README.md
9+
.gitattributes = .gitattributes
10+
.gitignore = .gitignore
11+
.github\workflows\ci.yml = .github\workflows\ci.yml
12+
LICENSE = LICENSE
13+
README.md = README.md
1414
EndProjectSection
1515
EndProject
16-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FluentAssertions.Analyzers", "FluentAssertions.Analyzers\FluentAssertions.Analyzers.csproj", "{3BA672F7-00D8-4E77-89A0-D46DD99D35AA}"
16+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FluentAssertions.Analyzers", "src\FluentAssertions.Analyzers\FluentAssertions.Analyzers.csproj", "{3BA672F7-00D8-4E77-89A0-D46DD99D35AA}"
1717
EndProject
1818
Global
1919
GlobalSection(SolutionConfigurationPlatforms) = preSolution

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ Install-Package FluentAssertions.Analyzers
2929
### Build
3030

3131
```bash
32-
dotnet build src
32+
dotnet build
3333
```
3434

3535
### Tests
3636

3737
```bash
38-
dotnet test src --configuration Release --filter 'TestCategory=Completed'
38+
dotnet test --configuration Release --filter 'TestCategory=Completed'
3939
```
4040

4141
## Example Usages

0 commit comments

Comments
 (0)