-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
37 lines (37 loc) · 1.54 KB
/
Directory.Build.props
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
36
37
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Deterministic>true</Deterministic>
<LangVersion>latest</LangVersion>
<WarningLevel>9999</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Local|AnyCpu' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<DefineConstants>DEBUG;TRACE;LOCAL</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<Optimize>false</Optimize>
<OutputPath>bin\Local_AnyCPU</OutputPath>
<PlatformTarget>AnyCPU</PlatformTarget>
<WarningLevel>9999</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Develop|AnyCpu' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<DefineConstants>DEBUG;TRACE;DEVELOP</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<Optimize>false</Optimize>
<OutputPath>bin\Develop_AnyCPU</OutputPath>
<PlatformTarget>AnyCPU</PlatformTarget>
<WarningLevel>9999</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>false</DebugSymbols>
<Optimize>true</Optimize>
<DebugType>none</DebugType>
<DefineConstants>TRACE;RELEASE</DefineConstants>
<OutputPath>bin\Release_AnyCPU</OutputPath>
<PlatformTarget>AnyCPU</PlatformTarget>
<WarningLevel>9999</WarningLevel>
</PropertyGroup>
</Project>