25 lines
744 B
XML
25 lines
744 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\StopShopping.EF\StopShopping.EF.csproj" />
|
|
<ProjectReference Include="..\StopShopping.OpenPlatform\StopShopping.OpenPlatform.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FileSignatures" Version="7.0.0" />
|
|
<PackageReference Include="Nanoid" Version="3.1.0" />
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.16.0" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|