dnSpy/DnSpyCommon.props

64 lines
3.2 KiB
Plaintext
Raw Normal View History

2019-01-01 19:52:57 +08:00
<Project>
2018-10-17 02:39:54 +08:00
<PropertyGroup>
2018-12-10 04:36:04 +08:00
<!--
- appveyor.yml (artifacts)
2019-03-24 20:14:39 +08:00
- build.cmd
2018-12-28 00:07:22 +08:00
- dnSpy/dnSpy/app.config (supportedRuntime, .NET Framework only)
2018-12-10 04:36:04 +08:00
NOTE: Update the ABOVE files when TargetFrameworks is updated -->
2018-12-13 19:10:46 +08:00
<TargetFrameworks>net472;netcoreapp3.0</TargetFrameworks>
2018-10-21 02:33:41 +08:00
<IsDotNetFramework>false</IsDotNetFramework>
<IsDotNetCore>false</IsDotNetCore>
<IsSelfContainedDotNetCore>false</IsSelfContainedDotNetCore>
2018-10-21 02:33:41 +08:00
<IsDotNetFramework Condition=" !$(TargetFramework.StartsWith(netcoreapp)) ">true</IsDotNetFramework>
<IsDotNetCore Condition=" $(TargetFramework.StartsWith(netcoreapp)) ">true</IsDotNetCore>
<IsSelfContainedDotNetCore Condition=" '$(IsDotNetCore)' == 'true' ">true</IsSelfContainedDotNetCore>
2018-10-17 02:39:54 +08:00
<Features>strict</Features>
<LangVersion>latest</LangVersion>
<NeutralLanguage>en</NeutralLanguage>
2018-10-24 04:31:39 +08:00
<AppDesignerFolderContentsVisibleOnlyInShowAllFiles>false</AppDesignerFolderContentsVisibleOnlyInShowAllFiles>
<!-- Make sure we don't have to publish each extension to get all their refs -->
<CopyLocalLockFileAssemblies Condition=" '$(IsDotNetCore)' == 'true' ">true</CopyLocalLockFileAssemblies>
2019-03-24 20:14:39 +08:00
<!-- If this gets updated, also update appveyor.yml and build.cmd -->
2019-01-22 00:24:35 +08:00
<DnSpyRuntimeIdentifiers>win-x86;win-x64</DnSpyRuntimeIdentifiers>
2018-10-17 02:39:54 +08:00
2018-12-28 00:07:22 +08:00
<!-- Update app.config whenever this value changes -->
2019-03-23 20:47:12 +08:00
<DnSpyAssemblyVersion>6.0.4.0</DnSpyAssemblyVersion>
2018-10-17 02:39:54 +08:00
<!-- This is shown in the title bar -->
2019-03-23 20:47:12 +08:00
<DnSpyAssemblyInformationalVersion>v6.0.4</DnSpyAssemblyInformationalVersion>
2019-01-01 19:01:51 +08:00
<DnSpyAssemblyCopyright>Copyright (C) 2014-2019 de4dot@gmail.com</DnSpyAssemblyCopyright>
2018-10-17 02:39:54 +08:00
2019-01-22 00:24:35 +08:00
<NoWarn>NU1701</NoWarn>
2018-12-28 00:07:22 +08:00
<!-- Update app.config whenever some of these versions change (eg. dnlib version) -->
2018-10-17 02:39:54 +08:00
<DiaSymReaderVersion>1.7.0</DiaSymReaderVersion>
2019-03-23 19:58:26 +08:00
<DnlibVersion>3.2.0</DnlibVersion>
2019-03-22 21:01:20 +08:00
<IcedVersion>1.2.0</IcedVersion>
2019-05-23 03:43:49 +08:00
<MSBuildNuGetVersion>16.0.461</MSBuildNuGetVersion>
2019-03-22 21:01:20 +08:00
<MSDiagRuntimeVersion>1.0.5</MSDiagRuntimeVersion>
2019-01-24 02:28:53 +08:00
<MSVSCompositionVersion>15.8.117</MSVSCompositionVersion>
2018-10-17 02:39:54 +08:00
<MSVSIntellisenseVersion>15.5.27130</MSVSIntellisenseVersion>
<MSVSTextVersion>15.5.27130</MSVSTextVersion>
<OokiiDialogsVersion>1.0.0</OokiiDialogsVersion>
2018-11-22 01:54:10 +08:00
<RoslynVersion>2.10.0</RoslynVersion>
2019-03-24 20:14:39 +08:00
<SCCompositionVersion>4.6.0-preview3.19128.7</SCCompositionVersion>
2018-10-17 02:39:54 +08:00
</PropertyGroup>
2018-10-21 02:33:41 +08:00
<Import Project="$(MSBuildThisFileDirectory)Build\ConvertToNetstandardReferences\ConvertToNetstandardReferences.tasks" Condition=" '$(IsDotNetCore)' == 'true' " />
2018-10-17 02:39:54 +08:00
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
2018-10-18 00:45:31 +08:00
<DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants>
2018-10-17 02:39:54 +08:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
2018-10-18 00:45:31 +08:00
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
2018-10-17 02:39:54 +08:00
</PropertyGroup>
<!-- .NET Core 3.0 SDK doesn't currently support COMReference: https://github.com/0xd4d/dnSpy/issues/1053 -->
<PropertyGroup>
<HasCOMReference>false</HasCOMReference>
<HasCOMReference Condition=" '$(MSBuildRuntimeType)' != 'Core' ">true</HasCOMReference>
<DefineConstants Condition=" '$(HasCOMReference)' == 'true' ">$(DefineConstants);HAS_COMREFERENCE</DefineConstants>
</PropertyGroup>
2018-10-17 02:39:54 +08:00
</Project>