Skip to content

Commit

Permalink
Resolve autofac#58: Set Advanced Build Settings / Output / Debugging …
Browse files Browse the repository at this point in the history
…information to "Full" (has the effect of modying .csproj file to add <DebugType>full</DebugType> for each debug and release configurations.
  • Loading branch information
Brett Cohen authored and jeanluc33 committed Oct 15, 2019
1 parent 6079bc8 commit ebbd078
Showing 1 changed file with 10 additions and 0 deletions.
Expand Up @@ -32,6 +32,16 @@
<Product>Autofac</Product>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Autofac" Version="4.9.1" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="2.9.4">
Expand Down

0 comments on commit ebbd078

Please sign in to comment.