Skip to content

Commit 21d905f

Browse files
committed
Context: https://devdiv.visualstudio.com/DevDiv/_workitems/edit/1230070 Changes: mono/LineEditor@5a7e3e2...3fa0c2e * mono/LineEditor@3fa0c2e: Fix NuGet publishing errors (#9) * mono/LineEditor@06a4ddf: Bump `$(PackageVersion)` to 5.4.1. * mono/LineEditor@bce1b7f: Enable .pdb files for Release config & add AzDO build script (#8) * mono/LineEditor@4831e1a: Merge pull request #6 from terrajobst/code-of-conduct * mono/LineEditor@5b4a4aa: Link Code of Conduct * mono/LineEditor@410ca3d: Merge pull request #2 from VEIT-Electronics/master * mono/LineEditor@3d802e7: Merge pull request #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. Add 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.
1 parent 9c73dbf commit 21d905f

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<Project>
2+
3+
<Target Name="_CopyDebugSymbols"
4+
Condition=" '$(TargetFramework)' != '' "
5+
AfterTargets="Build">
6+
<Copy
7+
SourceFiles="$(PkgMono_Terminal)\lib\netstandard2.0\LineEditor.pdb"
8+
DestinationFolder="$(OutputPath)"
9+
SkipUnchangedFiles="True"
10+
/>
11+
</Target>
12+
13+
</Project>

tools/logcat-parse/logcat-parse.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<ItemGroup>
1313
<PackageReference Include="Mono.Options" Version="5.3.0.1" />
14-
<PackageReference Include="Mono.Terminal" Version="5.4.0" />
14+
<PackageReference Include="Mono.Terminal" Version="5.4.1" GeneratePathProperty="True" />
1515
<PackageReference Include="Mono.CSharp" Version="4.0.0.143" NoWarn="NU1701" />
1616
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" PrivateAssets="All" Version="1.0.0" />
1717
</ItemGroup>

0 commit comments

Comments
 (0)