2021-09-05 15:44:47 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2021-04-08 02:03:17 +01:00
|
|
|
|
<PropertyGroup>
|
2022-09-23 22:16:12 +01:00
|
|
|
|
<TargetFrameworks>netcoreapp2.1</TargetFrameworks>
|
|
|
|
|
|
<RuntimeIdentifiers>linux-x64</RuntimeIdentifiers>
|
2021-04-08 02:03:17 +01:00
|
|
|
|
<UserSecretsId>85fd766d-5d23-4476-aed1-463b2942e86a</UserSecretsId>
|
2021-05-08 15:36:56 +01:00
|
|
|
|
<IsPackable>true</IsPackable>
|
2021-07-05 12:55:52 +01:00
|
|
|
|
<PackageLicenseExpression>WTFPL</PackageLicenseExpression>
|
2022-04-17 16:22:40 +01:00
|
|
|
|
<NoWarn>NETSDK1138</NoWarn>
|
2022-09-23 20:34:51 +01:00
|
|
|
|
<AssemblyVersion>1.0.5.0</AssemblyVersion>
|
|
|
|
|
|
<FileVersion>1.0.5.0</FileVersion>
|
|
|
|
|
|
<InformationalVersion>1.0.5+Branch.main.Sha.14206ac477d0f07566d5e8125dc52cbd7f474ca2</InformationalVersion>
|
|
|
|
|
|
<Version>1.0.5</Version>
|
2021-04-08 02:03:17 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
2021-04-25 12:12:50 +01:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="2.1.1" />
|
2022-09-23 22:16:12 +01:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="2.1.6" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="2.1.11" />
|
2021-04-25 12:12:50 +01:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.All" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.App" />
|
2022-04-17 20:36:28 +01:00
|
|
|
|
<PackageReference Include="NuGet.Packaging.Core" Version="5.9.0" />
|
2022-09-23 22:16:12 +01:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="2.1.30" />
|
2021-04-10 14:11:09 +01:00
|
|
|
|
<PackageReference Include="MailKit" Version="2.11.1" />
|
2022-09-23 22:16:12 +01:00
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="2.1.2" IncludeAssets="All" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="2.1.14" IncludeAssets="All" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.1.10" IncludeAssets="All" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.1.14" />
|
2021-07-05 12:55:52 +01:00
|
|
|
|
<PackageReference Include="unleash.client" Version="1.6.1" />
|
2022-04-17 20:36:28 +01:00
|
|
|
|
<PackageReference Include="GitVersion.MsBuild" Version="5.6.10*">
|
|
|
|
|
|
<PrivateAssets>All</PrivateAssets>
|
|
|
|
|
|
</PackageReference>
|
2022-09-23 22:16:12 +01:00
|
|
|
|
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="5.0.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Antiforgery" Version="2.1.1" />
|
2021-04-08 02:03:17 +01:00
|
|
|
|
</ItemGroup>
|
2022-04-09 19:53:26 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="../isn.abst/isn.abst.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
2021-04-08 02:03:17 +01:00
|
|
|
|
<ItemGroup>
|
2022-09-23 22:16:12 +01:00
|
|
|
|
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.1.14" />
|
2021-09-05 15:44:47 +01:00
|
|
|
|
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.1.0-preview1-final" />
|
2021-04-08 02:03:17 +01:00
|
|
|
|
</ItemGroup>
|
2021-07-05 12:55:52 +01:00
|
|
|
|
<ItemGroup>
|
2022-04-17 20:36:28 +01:00
|
|
|
|
<None Include="..\..\LICENSE" Pack="true" PackagePath="LICENSE" />
|
2021-09-05 15:44:47 +01:00
|
|
|
|
</ItemGroup>
|
2022-04-17 20:36:28 +01:00
|
|
|
|
</Project>
|