Skip to content
This repository was archived by the owner on Nov 3, 2023. It is now read-only.

Commit d8285ef

Browse files
Merge pull request #1 from bholmes/ci-fixes
Ci fixes
2 parents 4c80646 + 0c64263 commit d8285ef

File tree

4 files changed

+15
-1692
lines changed

4 files changed

+15
-1692
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
bin
2+
obj
3+
*.userprefs
4+

LineEditor/LineEditor.csproj

+11-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@
55
<PackageId>Mono.Terminal</PackageId>
66
<PackageVersion>5.4.0</PackageVersion>
77
<Authors>Miguel de Icaza</Authors>
8-
<PackageIconUrl>https://xamarin-component-icons.s3.amazonaws.com/mono.terminal.png</PackageIconUrl>
9-
<PackageLicenseUrl>https://components.xamarin.com/license/mono.terminal</PackageLicenseUrl>
8+
<PackageIconUrl>https://github.com/mono/LineEditor/raw/master/icon_128x128.png</PackageIconUrl>
9+
<PackageLicenseUrl>https://github.com/mono/LineEditor/blob/master/LICENSE</PackageLicenseUrl>
1010
<Owners>Xamarin</Owners>
1111
<PackageProjectUrl>https://github.com/mono/LineEditor</PackageProjectUrl>
1212
<PackageReleaseNotes>Release 5.4.0 includes new documentation.</PackageReleaseNotes>
1313
<Summary>An interactive commmand line editor</Summary>
1414
<Title>Mono.Terminal - LineEdit, GetLine</Title>
1515
<Description>Interactive Command Line Editor</Description>
16+
<InferPackageContents>false</InferPackageContents>
1617
</PropertyGroup>
1718

1819
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
@@ -23,6 +24,13 @@
2324
<DocumentationFile>bin\Release\netstandard2.0\LineEditor.xml</DocumentationFile>
2425
</PropertyGroup>
2526
<ItemGroup>
26-
<PackageReference Include="NuGet.Build.Packaging" Version="0.1.276" />
27+
<PackageReference Include="NuGet.Build.Packaging" Version="0.2.0" />
28+
</ItemGroup>
29+
30+
<!-- Workaround for 'Nugetizer packs reference assemblies into NuGet package' issue -->
31+
<!-- https://github.com/NuGet/Home/issues/5800 -->
32+
<ItemGroup>
33+
<PackageFile Include="$(OutputPath)LineEditor.dll" PackagePath="lib/netstandard2.0/LineEditor.dll" />
34+
<PackageFile Include="$(OutputPath)LineEditor.xml" PackagePath="lib/netstandard2.0/LineEditor.xml" />
2735
</ItemGroup>
2836
</Project>

0 commit comments

Comments
 (0)