2025-07-14 18:58:04 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2023-03-19 16:39:04 +00:00
|
|
|
<PropertyGroup>
|
2026-04-19 17:23:18 +01:00
|
|
|
<TargetFramework>net10.0</TargetFramework>
|
2023-03-19 16:39:04 +00:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2025-02-14 00:20:35 +00:00
|
|
|
<UserSecretsId>53bd70e8-ff81-497a-847f-a15fd8ea7a09</UserSecretsId>
|
2026-02-22 23:39:56 +00:00
|
|
|
<RootNamespace>Yavsc.Server</RootNamespace>
|
2026-05-24 20:55:29 +01:00
|
|
|
<RepositoryUrl>https://github.com/pazof/yavsc</RepositoryUrl>
|
2023-03-19 16:39:04 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2026-02-09 01:03:33 +00:00
|
|
|
<PackageReference Include="HigginsSoft.IdentityServer8.EntityFramework" />
|
2025-07-14 18:58:04 +01:00
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" />
|
|
|
|
|
<PackageReference Include="HigginsSoft.IdentityServer8" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Http.Features" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design">
|
2023-03-19 16:39:04 +00:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2025-07-14 18:58:04 +01:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" />
|
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" />
|
|
|
|
|
<PackageReference Include="Google.Apis.Calendar.v3" />
|
|
|
|
|
<PackageReference Include="PayPalMerchantSDK" />
|
|
|
|
|
<PackageReference Include="SixLabors.ImageSharp" />
|
|
|
|
|
<PackageReference Include="RazorEngine.NetCore" />
|
|
|
|
|
<PackageReference Include="MailKit" />
|
|
|
|
|
<PackageReference Include="MimeKit" />
|
|
|
|
|
<PackageReference Include="pazof.rules" />
|
2023-03-19 16:39:04 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2026-02-28 21:17:54 +00:00
|
|
|
<ProjectReference Include="../Yavsc.Abstract/Yavsc.Abstract.csproj" />
|
2023-03-19 16:39:04 +00:00
|
|
|
</ItemGroup>
|
2026-02-22 23:39:56 +00:00
|
|
|
</Project>
|