Browse Source

Fix IncludeSymbolsInPackage

pull/940/merge
Siegfried Pammer 9 years ago
parent
commit
efb2d3d2b9
  1. 6
      ICSharpCode.Decompiler/ICSharpCode.Decompiler.csproj

6
ICSharpCode.Decompiler/ICSharpCode.Decompiler.csproj

@ -24,7 +24,7 @@
<!-- HACK: Disable package generation on Unix due to tooling issues. --> <!-- HACK: Disable package generation on Unix due to tooling issues. -->
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' "> <PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols> <IncludeSymbolsInPackage>true</IncludeSymbolsInPackage>
<NuspecFile>ICSharpCode.Decompiler.nuspec</NuspecFile> <NuspecFile>ICSharpCode.Decompiler.nuspec</NuspecFile>
<NuspecProperties>Configuration=$(Configuration)</NuspecProperties> <NuspecProperties>Configuration=$(Configuration)</NuspecProperties>
</PropertyGroup> </PropertyGroup>
@ -591,9 +591,7 @@
</Target> </Target>
<!-- Workaround for EmbedSources support, see https://github.com/dotnet/roslyn/issues/19127 --> <!-- Workaround for EmbedSources support, see https://github.com/dotnet/roslyn/issues/19127 -->
<Target Name="PopulateEmbeddedFiles" <Target Name="PopulateEmbeddedFiles" AfterTargets="BeforeCompile" BeforeTargets="CoreCompile">
AfterTargets="BeforeCompile"
BeforeTargets="CoreCompile">
<ItemGroup> <ItemGroup>
<EmbeddedFiles Include="@(Compile)" /> <EmbeddedFiles Include="@(Compile)" />
</ItemGroup> </ItemGroup>

Loading…
Cancel
Save