Skip to content

Commit

Permalink
Turn off sudden influx of thousands of warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
keyboardDrummer committed Sep 25, 2020
1 parent 95f6396 commit a369de8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Source/Dafny/DafnyPipeline.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
<PackageVersion>1.1.0</PackageVersion>

</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netcoreapp3.1|AnyCPU'">
<WarningLevel>0</WarningLevel>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.7.0" />
Expand Down
6 changes: 5 additions & 1 deletion Source/DafnyServer/DafnyServer.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
Expand All @@ -14,6 +14,10 @@
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<WarningLevel>0</WarningLevel>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\boogie\Source\Core\Core-NetCore.csproj" />
Expand Down

0 comments on commit a369de8

Please sign in to comment.