dnSpy/DnSpyCommon.props

68 lines
3.6 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
<!--
2019-10-05 00:36:45 +08:00
- build.ps1
- .github/workflows/build.yml
- 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 -->
<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>
2019-06-16 03:51:44 +08:00
<Features>strict;nullablePublicOnly</Features>
2019-05-30 21:11:06 +08:00
<LangVersion>8.0</LangVersion>
<LangVersion Condition=" $(MSBuildProjectFile.EndsWith('.vbproj')) " >latest</LangVersion>
2018-10-17 02:39:54 +08:00
<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-10-05 00:36:45 +08:00
<!-- If this gets updated, also update .github/workflows/build.yml and build.ps1 -->
2019-01-22 00:24:35 +08:00
<DnSpyRuntimeIdentifiers>win-x86;win-x64</DnSpyRuntimeIdentifiers>
2019-11-19 06:33:28 +08:00
<SatelliteResourceLanguages>cs;de;es;es-ES;fa;fr;hu;it;pt-BR;pt-PT;ru;tr;uk;zh-CN</SatelliteResourceLanguages>
2018-10-17 02:39:54 +08:00
2018-12-28 00:07:22 +08:00
<!-- Update app.config whenever this value changes -->
2020-01-16 01:46:59 +08:00
<DnSpyAssemblyVersion>6.1.3.0</DnSpyAssemblyVersion>
2018-10-17 02:39:54 +08:00
<!-- This is shown in the title bar -->
2020-01-16 01:46:59 +08:00
<DnSpyAssemblyInformationalVersion>v6.1.3</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-06-11 01:27:14 +08:00
<!-- AD0001: buggy Roslyn analyzer(s) crash, disable that warning -->
2019-06-13 01:38:11 +08:00
<NoWarn>NU1701;AD0001</NoWarn>
2019-01-22 00:24:35 +08:00
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-12-26 20:47:29 +08:00
<DnlibVersion>3.3.1</DnlibVersion>
2019-10-03 02:42:58 +08:00
<IcedVersion>1.4.0</IcedVersion>
2019-10-04 00:07:49 +08:00
<MSBuildNuGetVersion>16.3.0</MSBuildNuGetVersion>
2019-11-28 02:15:00 +08:00
<MSDiagRuntimeVersion>1.1.57604</MSDiagRuntimeVersion>
2019-10-04 00:07:49 +08:00
<MSVSCompositionVersion>16.4.11</MSVSCompositionVersion>
2018-10-17 02:39:54 +08:00
<MSVSIntellisenseVersion>15.5.27130</MSVSIntellisenseVersion>
<MSVSTextVersion>15.5.27130</MSVSTextVersion>
<NewtonsoftJsonVersion>12.0.2</NewtonsoftJsonVersion>
2018-10-17 02:39:54 +08:00
<OokiiDialogsVersion>1.0.0</OokiiDialogsVersion>
2018-11-22 01:54:10 +08:00
<RoslynVersion>2.10.0</RoslynVersion>
2019-10-04 00:07:49 +08:00
<SCCompositionVersion>4.6.0</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>