Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,3 +140,8 @@ jobs:
dotnet ef migrations add InitialCreate
dotnet ef database update
dotnet run
- name: Run Linq2db.QuickStart
run: |
cd ./examples/Linq2db.QuickStart
dotnet run

22 changes: 22 additions & 0 deletions examples/Linq2db.QuickStart/Linq2db.QuickStart.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Community.Ydb.Linq2db" Version="0.0.1" />
<ProjectReference Include="..\..\src\Ydb.Sdk\src\Ydb.Sdk.csproj"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="linq2db" Version="6.0.0-rc.3" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.8.0"/>
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="5.0.0"/>
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0"/>
<PackageReference Include="Polly" Version="8.4.1" />
</ItemGroup>
</Project>
Loading
Loading