forked from dnSpy/dnSpy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
DnSpyCommon.props
47 lines (41 loc) · 2.25 KB
/
DnSpyCommon.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
<Project>
<PropertyGroup>
<!--
- appveyor.yml (artifacts)
- dnSpy/dnSpy/app.config (supportedRuntime, .NET Framework only)
NOTE: Update the ABOVE files when TargetFrameworks is updated -->
<TargetFrameworks>net472</TargetFrameworks>
<IsDotNetFramework>false</IsDotNetFramework>
<IsDotNetCore>false</IsDotNetCore>
<IsDotNetFramework Condition=" !$(TargetFramework.StartsWith(netcoreapp)) ">true</IsDotNetFramework>
<IsDotNetCore Condition=" $(TargetFramework.StartsWith(netcoreapp)) ">true</IsDotNetCore>
<Features>strict</Features>
<LangVersion>latest</LangVersion>
<NeutralLanguage>en</NeutralLanguage>
<AppDesignerFolderContentsVisibleOnlyInShowAllFiles>false</AppDesignerFolderContentsVisibleOnlyInShowAllFiles>
<!-- Update app.config whenever this value changes -->
<DnSpyAssemblyVersion>6.0.3.0</DnSpyAssemblyVersion>
<!-- This is shown in the title bar -->
<DnSpyAssemblyInformationalVersion>v6.0.3</DnSpyAssemblyInformationalVersion>
<DnSpyAssemblyCopyright>Copyright (C) 2014-2019 [email protected]</DnSpyAssemblyCopyright>
<!-- Update app.config whenever some of these versions change (eg. dnlib version) -->
<DnlibVersion>3.1.0</DnlibVersion>
<DiaSymReaderVersion>1.7.0</DiaSymReaderVersion>
<IcedVersion>1.1.1</IcedVersion>
<MSBuildNuGetVersion>15.9.20</MSBuildNuGetVersion>
<MSRegistryVersion>4.5.0</MSRegistryVersion>
<MSVSCompositionNetFxAttributesVersion>15.8.117</MSVSCompositionNetFxAttributesVersion>
<MSVSCompositionVersion>15.8.117</MSVSCompositionVersion>
<MSVSIntellisenseVersion>15.5.27130</MSVSIntellisenseVersion>
<MSVSTextVersion>15.5.27130</MSVSTextVersion>
<OokiiDialogsVersion>1.0.0</OokiiDialogsVersion>
<RoslynVersion>2.10.0</RoslynVersion>
</PropertyGroup>
<Import Project="$(MSBuildThisFileDirectory)Build\ConvertToNetstandardReferences\ConvertToNetstandardReferences.tasks" Condition=" '$(IsDotNetCore)' == 'true' " />
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
</PropertyGroup>
</Project>