forked from KOLANICH-tools/de4dot
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathDe4DotCommon.props
More file actions
23 lines (21 loc) · 1.16 KB
/
De4DotCommon.props
File metadata and controls
23 lines (21 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<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' ">net48</TargetFrameworks>
<TargetFrameworks Condition=" '$(De4DotNetFramework)' != 'true' ">net8.0</TargetFrameworks>
<Features>strict</Features>
<LangVersion>12.0</LangVersion>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)\de4dot.snk</AssemblyOriginatorKeyFile>
<VersionPrefix>3.5.1</VersionPrefix>
<Copyright>Copyright (C) 2011-2020 de4dot@gmail.com, 2025-2026 G DATA Advanced Analytics GmbH</Copyright>
<OutputPath>$(MSBuildThisFileDirectory)\$(Configuration)</OutputPath>
<DisableOutOfProcTaskHost>true</DisableOutOfProcTaskHost>
<DnlibVersion>4.5.0</DnlibVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<SelfContained>true</SelfContained>
</PropertyGroup>
</Project>