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.
19 lines
825 B
19 lines
825 B
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Squidex.Infrastructure.MongoDb\Squidex.Infrastructure.MongoDb.csproj" />
|
|
<ProjectReference Include="..\..\src\Squidex.Infrastructure\Squidex.Infrastructure.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="MongoDB.Driver" Version="2.4.4" />
|
|
<PackageReference Include="RefactoringEssentials" Version="5.2.0" />
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.0.2" />
|
|
<PackageReference Include="System.ValueTuple" Version="4.4.0" />
|
|
</ItemGroup>
|
|
<PropertyGroup>
|
|
<CodeAnalysisRuleSet>..\..\Squidex.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
</Project>
|
|
|