Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Context: https://devdiv.visualstudio.com/DevDiv/_workitems/edit/1230070

Changes: mono/LineEditor@5a7e3e2...3fa0c2e

  * mono/LineEditor@3fa0c2e: Fix NuGet publishing errors (dotnet#9)
  * mono/LineEditor@06a4ddf: Bump `$(PackageVersion)` to 5.4.1.
  * mono/LineEditor@bce1b7f: Enable .pdb files for Release config & add AzDO build script (dotnet#8)
  * mono/LineEditor@4831e1a: Merge pull request dotnet#6 from terrajobst/code-of-conduct
  * mono/LineEditor@5b4a4aa: Link Code of Conduct
  * mono/LineEditor@410ca3d: Merge pull request dotnet#2 from VEIT-Electronics/master
  * mono/LineEditor@3d802e7: Merge pull request dotnet#1 from VEIT-Electronics/bugfix/ENG-232-line-editor-completions
  * mono/LineEditor@0d43552: fix: text overriding was only platform specific (check platform)

The most important piece is mono/LineEditor@bce1b7f, which will allow
us to redistribute `LineEditor.pdb` in the Xamarin.Android installers.

Use `LineEditor.pdb` by adding a post-`Build` target to
`logcat-parse/Directory.Build.targets` which copies `LineEditor.pdb`
into `$(OutputPath)`.  This will allow the Xamarin.Android installer
to include `LineEditor.pdb` into the installer packages.
  • Loading branch information
jonpryor committed Oct 20, 2020
1 parent 9c73dbf commit 60e34b3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions tools/logcat-parse/Directory.Build.targets
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<Project>

<Target Name="_CopyDebugSymbols"
Condition=" '$(TargetFramework)' != '' "
AfterTargets="Build"
Inputs="$(PkgMono_Terminal)\lib\netstandard2.0\LineEditor.pdb"
Outputs="$(OutputPath)\LineEditor.pdb" >
<Copy
SourceFiles="$(PkgMono_Terminal)\lib\netstandard2.0\LineEditor.pdb"
DestinationFolder="$(OutputPath)"
SkipUnchangedFiles="True"
/>
</Target>

</Project>
2 changes: 1 addition & 1 deletion tools/logcat-parse/logcat-parse.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<ItemGroup>
<PackageReference Include="Mono.Options" Version="5.3.0.1" />
<PackageReference Include="Mono.Terminal" Version="5.4.0" />
<PackageReference Include="Mono.Terminal" Version="5.4.1" GeneratePathProperty="True" />
<PackageReference Include="Mono.CSharp" Version="4.0.0.143" NoWarn="NU1701" />
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" PrivateAssets="All" Version="1.0.0" />
</ItemGroup>
Expand Down

0 comments on commit 60e34b3

Please sign in to comment.