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.
22 lines
869 B
22 lines
869 B
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<RootNamespace>Squidex.Infrastructure</RootNamespace>
|
|
<LangVersion>8.0</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="AWSSDK.S3" Version="3.5.3.2" />
|
|
<PackageReference Include="RefactoringEssentials" Version="5.6.0" PrivateAssets="all" />
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Squidex.Infrastructure\Squidex.Infrastructure.csproj" />
|
|
</ItemGroup>
|
|
<PropertyGroup>
|
|
<CodeAnalysisRuleSet>..\..\Squidex.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<AdditionalFiles Include="..\..\stylecop.json" Link="stylecop.json" />
|
|
</ItemGroup>
|
|
</Project>
|