Skip to content

Commit 5ad3b2b

Browse files
committed
Rename main folders
1 parent 3064c68 commit 5ad3b2b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+5760
-23
lines changed

.dockerignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
.env
66
**/bin
77
**/obj
8-
**/Tests
8+
**/tests
99
**/*.yml
1010
**/*.pdf
1111
Dockerfile
12-
README.md
12+
README.md

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
branches:
55
- master
66
paths:
7-
- "App/**"
7+
- "app/**"
88
- "Directory.Build.props"
99
- "Dockerfile"
1010
- ".github/workflows/deploy.yml"

.github/workflows/scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
branches:
55
- master
66
paths:
7-
- "App/**"
7+
- "app/**"
88
- "Directory.Build.props"
99
- "global.json"
1010
- "Dockerfile"

.github/workflows/sonar.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ on:
44
branches:
55
- master
66
paths:
7-
- "App/**"
8-
- "Tests/**"
7+
- "app/**"
8+
- "tests/**"
99
- "**/*.props"
1010
- "global.json"
1111
- ".github/workflows/sonar.yml"
1212
pull_request:
1313
branches:
1414
- master
1515
paths:
16-
- "App/**"
17-
- "Tests/**"
16+
- "app/**"
17+
- "tests/**"
1818
- "global.json"
1919
- ".github/workflows/sonar.yml"
2020
workflow_dispatch:

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
"type": "coreclr",
77
"request": "launch",
88
"preLaunchTask": "build",
9-
"program": "${workspaceFolder}/App/Api/bin/Debug/net9.0/Api.dll",
9+
"program": "${workspaceFolder}/app/Api/bin/Debug/net9.0/Api.dll",
1010
"args": [],
11-
"cwd": "${workspaceFolder}/App/api",
11+
"cwd": "${workspaceFolder}/app/api",
1212
"stopAtEntry": false,
1313
"console": "internalConsole"
1414
}

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"dotnet-test-explorer.testProjectPath": "Tests/*/*Tests.csproj",
2+
"dotnet-test-explorer.testProjectPath": "tests/*/*Tests.csproj",
33
"dotnet-test-explorer.treeMode": "flat",
44
"dotnet-test-explorer.autoWatch": false,
55
"dotnet.defaultSolution": "App.slnx"

App.slnx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<Solution>
2-
<Folder Name="/App/">
3-
<Project Path="App/Api/Api.csproj" />
4-
<Project Path="App/Services/Services.csproj" />
2+
<Folder Name="/app/">
3+
<Project Path="app/Api/Api.csproj" />
4+
<Project Path="app/Services/Services.csproj" />
55
</Folder>
6-
<Folder Name="/Tests/">
7-
<Project Path="Tests/IntegrationTests/IntegrationTests.csproj" />
8-
<Project Path="Tests/UnitTests/UnitTests.csproj" />
6+
<Folder Name="/tests/">
7+
<Project Path="tests/IntegrationTests/IntegrationTests.csproj" />
8+
<Project Path="tests/UnitTests/UnitTests.csproj" />
99
</Folder>
1010
</Solution>

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<PropertyGroup Condition="$(MSBuildProjectName.EndsWith('Tests'))">
2121
<NoWarn>$(NoWarn);CA5394;CA1707</NoWarn>
2222
</PropertyGroup>
23-
<ItemGroup Condition="'$(MSBuildProjectExtension)' != '.dcproj'">
23+
<ItemGroup>
2424
<PackageReference Include="SonarAnalyzer.CSharp">
2525
<PrivateAssets>all</PrivateAssets>
2626
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS build
22

33
WORKDIR /app
44

5-
COPY App .
5+
COPY app .
66
COPY *.props .
77
COPY *.config .
88

Tests/IntegrationTests/IntegrationTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<TestingPlatformShowTestsFailure>true</TestingPlatformShowTestsFailure>
77
</PropertyGroup>
88
<ItemGroup>
9-
<ProjectReference Include="..\..\App\Api\Api.csproj" />
9+
<ProjectReference Include="..\..\app\Api\Api.csproj" />
1010
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" />
1111
<PackageReference Include="Microsoft.NET.Test.Sdk" />
1212
<PackageReference Include="Microsoft.Testing.Extensions.CodeCoverage" />

0 commit comments

Comments
 (0)