| 1 | <Project Sdk="Microsoft.NET.Sdk.Web"> |
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <TargetFramework>net10.0</TargetFramework> |
| 5 | <Nullable>enable</Nullable> |
| 6 | <ImplicitUsings>enable</ImplicitUsings> |
| 7 | <LangVersion>14</LangVersion> |
| 8 | <RootNamespace>IntercomService</RootNamespace> |
| 9 | <UserSecretsId>7f3c8a2e-4b1d-4f9a-9c2e-1a8b4d6e0f31</UserSecretsId> |
| 10 | </PropertyGroup> |
| 11 | |
| 12 | <ItemGroup> |
| 13 | <ProjectReference Include="..\..\..\..\wire\intercom-wire-core\IntercomWire.Core.csproj" Condition="Exists('..\..\..\..\wire\intercom-wire-core\IntercomWire.Core.csproj')" /> |
| 14 | <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.3" /> |
| 15 | <PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.3" /> |
| 16 | <PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.3" /> |
| 17 | <!-- Выровнять с Core 10.0.3; иначе от OutWit тянется Relational 10.0.1 и LINQ с DateTimeOffset.UtcNow снова «could not be translated». --> |
| 18 | <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="10.0.3" /> |
| 19 | <PackageReference Include="OutWit.Database.EntityFramework" Version="1.0.3" /> |
| 20 | <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.14.0" /> |
| 21 | </ItemGroup> |
| 22 | |
| 23 | </Project> |
| 24 | |
View only · write via MCP/CIDE