diff options
Diffstat (limited to 'src/dtf/Custom.Build.props')
-rw-r--r-- | src/dtf/Custom.Build.props | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/dtf/Custom.Build.props b/src/dtf/Custom.Build.props new file mode 100644 index 00000000..50429f77 --- /dev/null +++ b/src/dtf/Custom.Build.props | |||
@@ -0,0 +1,20 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
3 | |||
4 | <Project> | ||
5 | <PropertyGroup> | ||
6 | <DebugType>embedded</DebugType> | ||
7 | <PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
8 | </PropertyGroup> | ||
9 | |||
10 | <PropertyGroup Condition=" '$(UsingMicrosoftNETSdk)'!='true' and '$(Configuration)' == 'Debug' "> | ||
11 | <DebugSymbols>true</DebugSymbols> | ||
12 | <Optimize>false</Optimize> | ||
13 | <DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants> | ||
14 | </PropertyGroup> | ||
15 | <PropertyGroup Condition=" '$(UsingMicrosoftNETSdk)'!='true' and '$(Configuration)' == 'Release' "> | ||
16 | <DebugSymbols>false</DebugSymbols> | ||
17 | <Optimize>true</Optimize> | ||
18 | <DefineConstants>$(DefineConstants);TRACE</DefineConstants> | ||
19 | </PropertyGroup> | ||
20 | </Project> | ||