-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Directory.Build.props
62 lines (62 loc) · 2.36 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Deterministic>true</Deterministic>
<LangVersion>preview</LangVersion>
<WarningLevel>9999</WarningLevel>
<ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug_AnyCPU</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>9999</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
<PlatformTarget>x64</PlatformTarget>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug_x64</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>9999</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<Prefer32Bit>true</Prefer32Bit>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug_x86</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>9999</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>portable</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<DefineConstants>TRACE</DefineConstants>
<OutputPath>bin\Release_AnyCPU</OutputPath>
<WarningLevel>9999</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
<DebugType>portable</DebugType>
<PlatformTarget>x64</PlatformTarget>
<DefineConstants>TRACE</DefineConstants>
<OutputPath>bin\Release_x64</OutputPath>
<WarningLevel>9999</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>portable</DebugType>
<PlatformTarget>x86</PlatformTarget>
<DefineConstants>TRACE</DefineConstants>
<Prefer32Bit>true</Prefer32Bit>
<OutputPath>bin\Release_x86</OutputPath>
<WarningLevel>9999</WarningLevel>
</PropertyGroup>
</Project>