forked from microsoft/kernel-memory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCore.csproj
More file actions
33 lines (28 loc) · 1.16 KB
/
Core.csproj
File metadata and controls
33 lines (28 loc) · 1.16 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>KernelMemory.Core</AssemblyName>
<RootNamespace>KernelMemory.Core</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" />
<PackageReference Include="cuid.net" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" />
<PackageReference Include="Parlot" />
<!-- Logging - Serilog -->
<PackageReference Include="Serilog" />
<PackageReference Include="Serilog.Extensions.Logging" />
<PackageReference Include="Serilog.Sinks.Console" />
<PackageReference Include="Serilog.Sinks.File" />
<PackageReference Include="Serilog.Sinks.Async" />
<PackageReference Include="Serilog.Enrichers.Span" />
<PackageReference Include="Serilog.Formatting.Compact" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="KernelMemory.Main.Tests" />
<InternalsVisibleTo Include="KernelMemory.Core.Tests" />
</ItemGroup>
<ItemGroup>
<EditorConfigFiles Remove=".editorconfig" />
</ItemGroup>
</Project>