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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/ILVerify/src/ILVerify.csproj')
-rw-r--r--src/ILVerify/src/ILVerify.csproj8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/ILVerify/src/ILVerify.csproj b/src/ILVerify/src/ILVerify.csproj
index 0f5d1e990..9042c8a85 100644
--- a/src/ILVerify/src/ILVerify.csproj
+++ b/src/ILVerify/src/ILVerify.csproj
@@ -4,9 +4,13 @@
<OutputType>Exe</OutputType>
<RootNamespace>ILVerify</RootNamespace>
<AssemblyName>ILVerify</AssemblyName>
- <AssemblyKey></AssemblyKey>
<AssemblyOriginatorKeyFile>..\..\ILVerification\StrongNameKeys\ILVerify.snk</AssemblyOriginatorKeyFile>
- <TargetFramework>netcoreapp2.0</TargetFramework>
+ <SignAssembly>true</SignAssembly>
+ <!-- Suppress signing done by buildtools sign.targets -->
+ <SkipSigning>true</SkipSigning>
+ <!-- Delete once we pick up fix for https://github.com/dotnet/roslyn/issues/8210 -->
+ <DelaySign Condition="'$(OS)' != 'Windows_NT'">true</DelaySign>
+ <TargetFramework>netcoreapp2.1</TargetFramework>
<CopyNugetImplementations>false</CopyNugetImplementations>
<!-- Force .dll extension even if output type is exe. -->
<TargetExt>.dll</TargetExt>