forked from de4dot/de4dot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
De4DotCommon.props
27 lines (23 loc) · 1.25 KB
/
De4DotCommon.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
<Project>
<PropertyGroup>
<De4DotNetFramework>false</De4DotNetFramework>
<De4DotNetFramework Condition=" '$(SolutionName)' == 'de4dot.netframework' ">true</De4DotNetFramework>
<!-- Two different sln files are used because some of the projects are only available when targetting .NET Framework -->
<TargetFrameworks Condition=" '$(De4DotNetFramework)' == 'true' ">net35</TargetFrameworks>
<TargetFrameworks Condition=" '$(De4DotNetFramework)' != 'true' ">netcoreapp3.0;netcoreapp2.1</TargetFrameworks>
<Features>strict</Features>
<LangVersion>latest</LangVersion>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)\de4dot.snk</AssemblyOriginatorKeyFile>
<Version>3.1.41592.3405</Version>
<Copyright>Copyright (C) 2011-2018 de4dot@gmail.com</Copyright>
<OutputPath>$(MSBuildThisFileDirectory)\$(Configuration)</OutputPath>
<DnlibVersion>3.2.0</DnlibVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
</PropertyGroup>
</Project>