-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathHelloCart.csproj
28 lines (24 loc) · 1.04 KB
/
HelloCart.csproj
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<AssemblyName>Samples.HelloCart</AssemblyName>
<RootNamespace>Samples.HelloCart</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0" />
<PackageReference Include="Stl.Fusion.EntityFramework" Version="6.8.11" />
<PackageReference Include="Stl.Fusion.EntityFramework.Redis" Version="6.8.11" />
<PackageReference Include="Stl.Fusion.Server" Version="6.8.11" />
</ItemGroup>
<!-- Roslyn generators/analyzers -->
<ItemGroup>
<PackageReference Include="MemoryPack.Generator" Version="1.10.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Stl.Generators" Version="6.8.11" />
</ItemGroup>
</Project>