Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,7 @@ packages/
publish/
*.nupkg
launchSettings.json

# TEMP: vendored Terminal.Gui 2.5.0 preview feed (see nuget.config); remove once 2.5.x is on nuget.org
!local_packages/*.nupkg
!local_packages/*.snupkg
5 changes: 4 additions & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@
<RepositoryType>git</RepositoryType>
<PackageLicenseFile>LICENSE</PackageLicenseFile>

<TerminalGuiVersion Condition="'$(TerminalGuiVersion)' == ''">2.4.3</TerminalGuiVersion>
<!-- TEMP: Terminal.Gui 2.5.0 preview built from tui-cs/Terminal.Gui#5416, restored
from the vendored ./local_packages feed (see nuget.config). Switch back to a
public nuget.org version once 2.5.x ships. -->
<TerminalGuiVersion Condition="'$(TerminalGuiVersion)' == ''">2.5.0-tig-remove-cm-followup.2</TerminalGuiVersion>

<!-- SourceLink & symbol packages -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
Expand Down
Binary file not shown.
Binary file not shown.
11 changes: 11 additions & 0 deletions nuget.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<!-- TEMP: local feed for the Terminal.Gui 2.5.0 preview built from
tui-cs/Terminal.Gui#5416 (ConfigurationManager removal). The .nupkg/.snupkg
are vendored in ./local_packages so CI and clean clones can restore.
Remove this source (and ./local_packages) once 2.5.x ships on nuget.org. -->
<add key="tgui-pr-5416" value="./local_packages" />
</packageSources>
</configuration>