mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
2.5 KiB
54 lines
2.5 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<RootNamespace>Squidex.Domain.Apps.Core</RootNamespace>
|
|
<LangVersion>latest</LangVersion>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<NeutralLanguage>en</NeutralLanguage>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DebugType>full</DebugType>
|
|
<DebugSymbols>True</DebugSymbols>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Squidex.Domain.Apps.Core.Model\Squidex.Domain.Apps.Core.Model.csproj" />
|
|
<ProjectReference Include="..\Squidex.Domain.Apps.Events\Squidex.Domain.Apps.Events.csproj" />
|
|
<ProjectReference Include="..\Squidex.Infrastructure\Squidex.Infrastructure.csproj" />
|
|
<ProjectReference Include="..\Squidex.Shared\Squidex.Shared.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Fluid.Core" Version="2.12.0" />
|
|
<PackageReference Include="GeoJSON.Net" Version="1.4.1" />
|
|
<PackageReference Include="Jint" Version="4.1.0" />
|
|
<PackageReference Include="Meziantou.Analyzer" Version="2.0.179">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.1" />
|
|
<PackageReference Include="NJsonSchema" Version="11.0.2" />
|
|
<PackageReference Include="RefactoringEssentials" Version="5.6.0" PrivateAssets="all" />
|
|
<PackageReference Include="Squidex.AI" Version="6.28.0" />
|
|
<PackageReference Include="Squidex.Messaging.Subscriptions" Version="6.28.0" />
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="all" />
|
|
<PackageReference Include="System.Collections.Immutable" Version="8.0.0" />
|
|
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
|
|
<PackageReference Include="ValueTaskSupplement" Version="1.1.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<AdditionalFiles Include="..\..\stylecop.json" Link="stylecop.json" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
</Project>
|
|
|