blob: ef1e96e6bcc9c6269a18dfcc0eaad559491d08a6 [file] [log] [blame]
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AssemblyName>Apache.Ignite.Core</AssemblyName>
<RootNamespace>Apache.Ignite.Core</RootNamespace>
<AssemblyOriginatorKeyFile>Apache.Ignite.Core.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<DelaySign>false</DelaySign>
<!-- netcoreapp2.0 is out of support -->
<NoWarn>NETSDK1138</NoWarn>
<CodeAnalysisRuleSet>..\Apache.Ignite.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.4.0" />
<!--
NOTE: Microsoft.CodeAnalysis.NetAnalyzers is the new replacement for FxCopAnalyzers,
but it has some issues on older SDKs (https://github.com/dotnet/roslyn-analyzers/issues/4776).
NOTE: Don't upgrade to 3.x - it does not work on some older 2.x SDKs
-->
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.12"/>
</ItemGroup>
<ItemGroup>
<None Update="IgniteConfigurationSection.xsd">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="IgniteClientConfigurationSection.xsd">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>