-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
48 lines (42 loc) · 2.19 KB
/
Copy pathDirectory.Build.props
File metadata and controls
48 lines (42 loc) · 2.19 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
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<Authors>tui-cs</Authors>
<Company>tui-cs</Company>
<Copyright>Copyright (c) tui-cs and contributors</Copyright>
<!--
No version lives in the repo. Versions are computed from git tags by
GitVersion (see GitVersion.yml) and injected by CI via -p:Version=<computed>:
- tag push v2.5.3 → 2.5.3
- develop branch push → 2.5.3-develop.<commits-since-tag>
Editor's version is independent of Terminal.Gui's; TG compatibility is
expressed only by <TerminalGuiVersion> below. Local builds that don't pass
-p:Version get an obviously-non-releasable placeholder.
-->
<Version Condition="'$(Version)' == ''">0.0.0-local</Version>
<PackageProjectUrl>https://github.com/tui-cs/Editor</PackageProjectUrl>
<RepositoryUrl>https://github.com/tui-cs/Editor</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<!--
Minimum supported Terminal.Gui (the NuGet dependency floor). Auto-bumped to
the latest stable (non-pre-release) TG by .github/workflows/bump-terminal-gui.yml
when TG publishes a release; develop pre-releases are ignored unless a human
runs that workflow with channel=prerelease. A stable Editor release requires
a stable value here (prepare-release.yml gates on it, and NuGet forbids
stable→prerelease dependencies anyway).
Override per-build via -p:TerminalGuiVersion=<x>; use -p:UseLocalTerminalGui=true
to build against the ../Terminal.Gui enlistment instead (see Directory.Build.targets).
-->
<TerminalGuiVersion Condition="'$(TerminalGuiVersion)' == ''">2.4.18-develop.5</TerminalGuiVersion>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)LICENSE" Pack="true" PackagePath="" />
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>