Welcome to mirror list, hosted at ThFree Co, Russian Federation.

referenceAssemblies.props « eng - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4aabb96b89999f3ad9caf3dead9c9b5e4f8e99bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project>
  <PropertyGroup Condition="'$(BuildAllProjects)' == 'true' and
                            !$(BuildTargetFramework.StartsWith('netstandard')) and
                            !$(BuildTargetFramework.StartsWith('net4'))">
    <AdditionalBuildTargetFrameworks>$(AdditionalBuildTargetFrameworks);netstandard2.0</AdditionalBuildTargetFrameworks>
    <AdditionalBuildTargetFrameworks Condition="!$(BuildTargetFramework.StartsWith('netcoreapp2.0'))">$(AdditionalBuildTargetFrameworks);netstandard2.1</AdditionalBuildTargetFrameworks>

    <!-- Reference assemblies are special and don't initialize fields or have empty finalizers, etc. -->
    <EnableAnalyzers>false</EnableAnalyzers>
  </PropertyGroup>

  <PropertyGroup>
    <!-- disable warnings about unused fields -->
    <NoWarn>$(NoWarn);CS0169;CS0649;CS8618</NoWarn>

    <!-- disable CS8597 because we throw null on reference assemblies. -->
    <NoWarn>$(NoWarn);CS8597</NoWarn>

    <!-- We base calls from constructors with null literals. -->
    <NoWarn>$(NoWarn);CS8625</NoWarn>

    <!-- We dont need to add null annotation within the ref for explicit interface methods. -->
    <NoWarn>$(NoWarn);CS8617</NoWarn>
  </PropertyGroup>

  <ItemGroup>
    <!-- All reference assemblies should have the 0x70 flag which prevents them from loading
         and the ReferenceAssemblyAttribute. -->
    <AssemblyInfoLines Include="[assembly:System.Runtime.CompilerServices.ReferenceAssembly]" />
    <AssemblyInfoLines Include="[assembly:System.Reflection.AssemblyFlags((System.Reflection.AssemblyNameFlags)0x70)]" />
  </ItemGroup>
</Project>