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

Directory.Build.props « tools « coreclr « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8e4a4e912df23489ed752eb1f9e4ad5a20c568a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<Project>
  <Import Project="../Directory.Build.props" />
  <PropertyGroup>
    <IsShipping>false</IsShipping>
    <SignAssembly>false</SignAssembly>
    <RunAnalyzers>false</RunAnalyzers>
  </PropertyGroup>
  
  <!-- MSBuild doesn't understand the Checked configuration -->
  <PropertyGroup Condition="'$(Configuration)' == 'Checked'">
    <Optimize Condition="'$(Optimize)' == ''">true</Optimize>
    <DefineConstants>DEBUG;$(DefineConstants)</DefineConstants>
  </PropertyGroup>
</Project>