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

analyzer.csproj « analyzer « src - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 49b053be882ad8d4488e69aa070d3439b3d56f12 (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
33
34
35
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <RootNamespace>LinkerAnalyzer</RootNamespace>
    <AssemblyName>illinkanalyzer</AssemblyName>
    <Configurations>Debug;Release;illink_Debug;illink_Release</Configurations>
  </PropertyGroup>

  <PropertyGroup Condition="$(Configuration.StartsWith('illink'))">
    <DefineConstants>$(DefineConstants);FEATURE_ILLINK</DefineConstants>
    <!-- net46 build is disabled until cecil uses SDK-style projects. -->
    <TargetFrameworks>netcoreapp3.0</TargetFrameworks>
    <TargetFrameworks Condition="'$(MSBuildRuntimeType)' == 'Core' And '$(OS)' != 'Windows_NT'">netcoreapp3.0</TargetFrameworks>
  </PropertyGroup>

  <PropertyGroup Condition="!$(Configuration.StartsWith('illink'))">
    <TargetFrameworks>net471</TargetFrameworks>
  </PropertyGroup>

  <PropertyGroup Condition="$(Configuration.EndsWith('Debug'))">
    <DebugSymbols Condition="'$(DebugSymbols)' == ''">true</DebugSymbols>
    <Optimize Condition="'$(Optimize)' == ''">false</Optimize>
  </PropertyGroup>

  <PropertyGroup Condition="$(Configuration.EndsWith('Release'))">
    <Optimize Condition="'$(Optimize)' == ''">true</Optimize>
  </PropertyGroup>

  <ItemGroup>
    <ProjectReference Include="../../external/cecil/Mono.Cecil.csproj">
    </ProjectReference>
  </ItemGroup>

</Project>