Skip to content

Commit f35ff68

Browse files
committed
Moving files
1 parent c4d1087 commit f35ff68

Some content is hidden

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

47 files changed

+27
-27
lines changed

.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+
- "src/**"
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+
- "src/**"
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+
- "src/**"
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+
- "src/**"
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}/src/Api/bin/Debug/net9.0/Api.dll",
1010
"args": [],
11-
"cwd": "${workspaceFolder}/App/api",
11+
"cwd": "${workspaceFolder}/src/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,4 +1,4 @@
11
{
22
"dotnet.testWindow.useTestingPlatformProtocol": true,
3-
"dotnet.defaultSolution": "App.slnx"
3+
"dotnet.defaultSolution": "app.slnx"
44
}

.vscode/tasks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{
55
"label": "run app",
66
"type": "shell",
7-
"command": "dotnet run watch --project App/Api/Api.csproj",
7+
"command": "dotnet run watch --project src/Api/Api.csproj",
88
"problemMatcher": "$msCompile",
99
"group": "build"
1010
},

App.slnx

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

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS build
22

33
WORKDIR /app
44

5-
COPY App .
5+
COPY src .
66
COPY Directory.Build.props .
7-
COPY NuGet.config .
7+
COPY nuget.config .
88

99
RUN dotnet restore --locked-mode ./Api/Api.csproj
1010

app.slnx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<Solution>
2+
<Folder Name="/src/">
3+
<Project Path="src/Api/Api.csproj" />
4+
<Project Path="src/Services/Services.csproj" />
5+
</Folder>
6+
<Folder Name="/tests/">
7+
<Project Path="tests/IntegrationTests/IntegrationTests.csproj" />
8+
<Project Path="tests/UnitTests/UnitTests.csproj" />
9+
</Folder>
10+
</Solution>

0 commit comments

Comments
 (0)