-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExample.csproj
More file actions
38 lines (29 loc) · 1.45 KB
/
Example.csproj
File metadata and controls
38 lines (29 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DefineConstants>$(DefineConstants);EFCORE_PROFILER_TOOLBAR</DefineConstants>
</PropertyGroup>
<ItemGroup>
<None Remove="db.sqlite" />
<None Remove="db.sqlite-shm" />
<None Remove="db.sqlite-wal" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="$(EfCoreRelationPackage)" />
<PackageReference Include="System.Text.Json" Version="8.0.*" />
</ItemGroup>
<ItemGroup Condition="$(DefineConstants.Contains('NANODBPROFILER'))">
<ProjectReference Include="..\NanoDbProfiler.AspNetCore\NanoDbProfiler.AspNetCore.csproj" />
</ItemGroup>
<ItemGroup Condition="$(DefineConstants.Contains('EFCORE_PROFILER_TOOLBAR')) and $(Configuration) == 'Debug'">
<ProjectReference Include="..\..\..\github.com\guneysus\EfCoreQueryToolbar.git\src\EfCoreQueryToolbar\EfCoreQueryToolbar.csproj" />
</ItemGroup>
<ItemGroup Condition="$(Configuration) == 'Release'">
<PackageReference Version="0.0.1-alpha-gde64f9e45e" Include="EfCoreQueryToolbar" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="X:\git\github.com\guneysus\sql-query-profiler\src\DbQueryTracer.EfCore\DbQueryTracer.EfCore.csproj" />
</ItemGroup>
</Project>