Skip to content

Commit c93f637

Browse files
fixes
1 parent 79f7aaf commit c93f637

File tree

16 files changed

+18
-21
lines changed

16 files changed

+18
-21
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
source-dir: ["./src/", "./examples/src/", "./slo/src/"]
14+
source-dir: ["./src/", "./examples", "./slo/src/"]
1515
include:
1616
- source-dir: "./src/"
1717
solutionFile: "YdbSdk.sln"
18-
- source-dir: "./examples/src/"
18+
- source-dir: "./examples/"
1919
solutionFile: "YdbExamples.sln"
2020
- source-dir: "./slo/src/"
2121
solutionFile: "src.sln"

examples/EntityFrameworkCore.Ydb.QuickStart/EntityFrameworkCore.Ydb.QuickStart.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<ProjectReference Include="..\..\..\src\EFCore.Ydb\src\EntityFrameworkCore.Ydb.csproj" />
12+
<ProjectReference Include="..\..\src\EFCore.Ydb\src\EntityFrameworkCore.Ydb.csproj" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

examples/EntityFrameworkCore.Ydb.Samples/AddEntity.Sample/AddEntity.Sample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<ProjectReference Include="..\..\..\..\src\EFCore.Ydb\src\EntityFrameworkCore.Ydb.csproj" />
12+
<ProjectReference Include="..\..\..\src\EFCore.Ydb\src\EntityFrameworkCore.Ydb.csproj" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

examples/EntityFrameworkCore.Ydb.Samples/Database.Operations.Tutorial/Database.Operations.Tutorial.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<ProjectReference Include="..\..\..\..\src\EFCore.Ydb\src\EntityFrameworkCore.Ydb.csproj" />
12+
<ProjectReference Include="..\..\..\src\EFCore.Ydb\src\EntityFrameworkCore.Ydb.csproj" />
1313
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
1414
</ItemGroup>
1515

examples/EntityFrameworkCore.Ydb.Samples/Database.Operations.Tutorial/Program.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,6 @@ static void Like(HRContext context)
177177
{
178178
Console.WriteLine($"{e.FirstName} {e.LastName}");
179179
}
180-
181-
;
182180
}
183181
}
184182

examples/EntityFrameworkCore.Ydb.Samples/Schema.ManyToMany/Schema.ManyToMany.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<ProjectReference Include="..\..\..\..\src\EFCore.Ydb\src\EntityFrameworkCore.Ydb.csproj" />
12+
<ProjectReference Include="..\..\..\src\EFCore.Ydb\src\EntityFrameworkCore.Ydb.csproj" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

examples/EntityFrameworkCore.Ydb.Samples/Schema.OneToMany/README.md

Whitespace-only changes.

examples/EntityFrameworkCore.Ydb.Samples/Schema.OneToMany/Schema.OneToMany.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<ProjectReference Include="..\..\..\..\src\EFCore.Ydb\src\EntityFrameworkCore.Ydb.csproj" />
12+
<ProjectReference Include="..\..\..\src\EFCore.Ydb\src\EntityFrameworkCore.Ydb.csproj" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

examples/EntityFrameworkCore.Ydb.Samples/Schema.OneToOne/Schema.OneToOne.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<ProjectReference Include="..\..\..\..\src\EFCore.Ydb\src\EntityFrameworkCore.Ydb.csproj" />
12+
<ProjectReference Include="..\..\..\src\EFCore.Ydb\src\EntityFrameworkCore.Ydb.csproj" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

examples/EntityFrameworkCore.Ydb.Yandex.Cloud/EntityFrameworkCore.Ydb.Yandex.Cloud.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<ProjectReference Include="..\..\..\src\EFCore.Ydb\src\EntityFrameworkCore.Ydb.csproj"/>
20-
<ProjectReference Include="..\..\..\src\Ydb.Sdk\src\Ydb.Sdk.csproj"/>
19+
<ProjectReference Include="..\..\src\EFCore.Ydb\src\EntityFrameworkCore.Ydb.csproj"/>
2120
</ItemGroup>
2221
</Project>

0 commit comments

Comments
 (0)