Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2020-10-09 18:17:54 +0300
committerGitHub <noreply@github.com>2020-10-09 18:17:54 +0300
commit41078a0e2fd80afc7b85048bf3fd9a3744a834b0 (patch)
tree6493ffb3477c63f115eca79fc3b101706321b8bd /Directory.Build.props
parent4b4fd5e6e48d2c1660e1aaa890e40db735eef003 (diff)
Bump cecil version (#1515)
With this change, the nuspec of the ref assembly package will list cecil verision 0.11.2 as a dependency (instead of 5.0.0-rc*). This allows consumers of the ref package to use the publicly released cecil. Co-authored-by: Sven Boemer <sbomer@gmail.com> Co-authored-by: vitek-karas <vitek.karas@microsoft.com>
Diffstat (limited to 'Directory.Build.props')
-rw-r--r--Directory.Build.props5
1 files changed, 2 insertions, 3 deletions
diff --git a/Directory.Build.props b/Directory.Build.props
index 4f3900653..920bc6e1c 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -25,9 +25,8 @@
<IsPackable>false</IsPackable>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<_ToolsProjectTargets>$(ArtifactsToolsetDir)Common\Tools.proj.nuget.g.targets</_ToolsProjectTargets>
- <!-- Set this to false to build against the submodule. Convenient for experimenting locally. -->
- <UseCecilPackage Condition="'$(MonoBuild)' != '' And '$(UseCecilPackage)' == ''">false</UseCecilPackage>
- <UseCecilPackage Condition="'$(UseCecilPackage)' == ''">true</UseCecilPackage>
+ <!-- Set this to true to build against the package instead of the submodule. -->
+ <UseCecilPackage Condition="'$(UseCecilPackage)' == ''">false</UseCecilPackage>
<!-- No symbols are produced for ref assemblies, but some parts of the SDK still expect pdbs, so we explicitly tell it there are none. -->
<!-- Must be set after importing Arcade to override its defaults. -->
<DebugType Condition=" '$(IsReferenceAssembly)' == 'true' ">none</DebugType>