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

Mono.Linker.Tests.Cases.Expectations.csproj « Mono.Linker.Tests.Cases.Expectations « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe28def7745d3e27125922765ccb994a412fcbd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <LangVersion>latest</LangVersion>
  </PropertyGroup>

  <PropertyGroup Condition="'$(MonoBuild)' == ''">
    <TargetFramework>net5.0</TargetFramework>
  </PropertyGroup>
  <PropertyGroup Condition="'$(MonoBuild)' != ''">
    <TargetFramework>net471</TargetFramework>
  </PropertyGroup>

  <ItemGroup Condition="'$(MonoBuild)' == ''">
    <Compile Remove="System.Diagnostics.CodeAnalysis\*.cs" />
  </ItemGroup>

</Project>