-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
56 lines (53 loc) · 2.98 KB
/
Copy pathDirectory.Build.props
File metadata and controls
56 lines (53 loc) · 2.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<Project>
<PropertyGroup>
<Copyright>Copyright © 2025-$([System.DateTime]::Now.Year) Aaron Stannard</Copyright>
<Authors>Aaron Stannard</Authors>
<Product>Termina</Product>
<Description>Reactive terminal UI (TUI) framework for .NET with custom ANSI rendering, MVVM architecture, source-generated reactive properties, and ASP.NET Core-style routing.</Description>
<Tags>tui;terminal;console;ansi;reactive;mvvm;cli</Tags>
<NoWarn>$(NoWarn);CS1591;CS0169;CS0414</NoWarn>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<VersionPrefix>0.15.0-beta1</VersionPrefix>
<PackageReleaseNotes>**Bug Fixes**
- **Fixed CJK and Unicode display width handling** ([#321](https://github.com/Aaronontheweb/termina/pull/321))
- Terminal rendering now correctly accounts for East Asian and wide Unicode character widths in layout and cursor behavior
**Dependency Updates**
- Updated `actions/setup-dotnet` from 5.2.0 to 5.3.0 ([#270](https://github.com/Aaronontheweb/termina/pull/270))
- Updated `Microsoft.Extensions.TimeProvider.Testing` from 10.6.0 to 10.7.0 ([#288](https://github.com/Aaronontheweb/termina/pull/288))
- Updated `dotnet-sdk` from 10.0.201 to 10.0.301 ([#290](https://github.com/Aaronontheweb/termina/pull/290))
- Updated `Microsoft.NET.Test.Sdk` from 18.6.0 to 18.7.0 ([#319](https://github.com/Aaronontheweb/termina/pull/319))</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup>
<!-- Target framework versions -->
<NetStandardLibVersion>netstandard2.0</NetStandardLibVersion>
<NetLibVersion>net10.0</NetLibVersion>
<NetCoreTestVersion>net10.0</NetCoreTestVersion>
</PropertyGroup>
<!-- GitHub SourceLink -->
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
</ItemGroup>
<!-- NuGet package content -->
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)\assets\termina-icon.png" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<!-- NuGet .nupkg options -->
<PropertyGroup>
<PackageTags>tui;terminal;console;ansi;reactive;mvvm;cli;dotnet</PackageTags>
<PackageProjectUrl>https://aaronstannard.com/termina/</PackageProjectUrl>
<RepositoryUrl>https://github.com/Aaronontheweb/termina</RepositoryUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageIcon>termina-icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
</Project>