2025-07-14 18:58:04 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2023-03-19 17:57:55 +00:00
|
|
|
<PropertyGroup>
|
2025-06-13 15:22:02 +01:00
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
2023-03-19 17:57:55 +00:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2023-04-05 22:29:40 +01:00
|
|
|
<PackageLicenseExpression>WTFPL</PackageLicenseExpression>
|
2025-02-14 00:20:35 +00:00
|
|
|
<UserSecretsId>76e56fc2-1619-40d8-8393-365258b7a21d</UserSecretsId>
|
2023-03-19 17:57:55 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2025-07-14 18:58:04 +01:00
|
|
|
<PackageReference Include="popper.js">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
2024-02-25 18:05:10 +00:00
|
|
|
</PackageReference>
|
2025-07-14 18:58:04 +01:00
|
|
|
<PackageReference Include="bootstrap">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
2024-02-25 18:05:10 +00:00
|
|
|
</PackageReference>
|
2025-07-14 18:58:04 +01:00
|
|
|
<PackageReference Include="HigginsSoft.IdentityServer8" />
|
|
|
|
|
<PackageReference Include="HigginsSoft.IdentityServer8.AspNetIdentity" />
|
2025-08-24 16:07:53 +01:00
|
|
|
<PackageReference Include="HigginsSoft.IdentityServer8.EntityFramework" />
|
|
|
|
|
<PackageReference Include="HigginsSoft.IdentityServer8.EntityFramework.Storage" />
|
|
|
|
|
<PackageReference Include="HigginsSoft.IdentityServer8.Security" />
|
|
|
|
|
<PackageReference Include="HigginsSoft.IdentityServer8.Storage" />
|
2025-07-14 18:58:04 +01:00
|
|
|
<PackageReference Include="Serilog.AspNetCore" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Google" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools">
|
2023-04-02 14:53:31 +01:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2025-07-14 18:58:04 +01:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design">
|
2023-04-02 14:53:31 +01: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.Authentication.JwtBearer" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" />
|
|
|
|
|
<PackageReference Include="Google.Apis.Compute.v1" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Razor" />
|
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" />
|
|
|
|
|
<PackageReference Include="System.Security.Cryptography.Pkcs" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Antiforgery" />
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" />
|
|
|
|
|
<PackageReference Include="AsciiDocNet" />
|
|
|
|
|
<PackageReference Include="SixLabors.ImageSharp" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Google" />
|
2025-08-18 09:22:09 +01:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" />
|
2023-03-19 17:57:55 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="../Yavsc.Server/Yavsc.Server.csproj" />
|
2025-06-13 15:22:02 +01:00
|
|
|
<ProjectReference Include="../Yavsc.Abstract/Yavsc.Abstract.csproj" />
|
2023-03-19 17:57:55 +00:00
|
|
|
</ItemGroup>
|
2025-08-18 09:22:09 +01:00
|
|
|
</Project>
|