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/ILCompiler/repro/repro.csproj')
-rw-r--r--src/ILCompiler/repro/repro.csproj8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/ILCompiler/repro/repro.csproj b/src/ILCompiler/repro/repro.csproj
index 5e3e75312..e8ec9a042 100644
--- a/src/ILCompiler/repro/repro.csproj
+++ b/src/ILCompiler/repro/repro.csproj
@@ -3,16 +3,22 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<AssemblyName>repro</AssemblyName>
- <TargetFramework>netcoreapp2.0</TargetFramework>
+ <TargetFramework>netcoreapp2.1</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<SkipSigning>true</SkipSigning>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<CopyNuGetImplementations>false</CopyNuGetImplementations>
+
+ <!-- Supress warnings that often happen in repro code -->
+ <NoWarn>169;414</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NETCore.App">
<Version>$(MicrosoftNETCoreAppPackageVersion)</Version>
</PackageReference>
+ <PackageReference Include="System.Runtime.CompilerServices.Unsafe">
+ <Version>4.5.1</Version>
+ </PackageReference>
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />