Skip to content

Commit ddad08e

Browse files
Merge pull request #92 from Stillpoint-Software/develop
Develop
2 parents cd52fbb + 5024816 commit ddad08e

File tree

5 files changed

+78
-12
lines changed

5 files changed

+78
-12
lines changed

Directory.Build.props

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,18 @@
33
<ItemGroup>
44
<!-- NBGV drives versions; PrivateAssets=all keeps it out of consumers -->
55
<PackageReference Include="Nerdbank.GitVersioning" Version="3.8.38-alpha" PrivateAssets="all" />
6+
67
<!-- SourceLink for GitHub -->
78
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
89
<PrivateAssets>all</PrivateAssets>
910
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1011
</PackageReference>
12+
13+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.14.0" />
1114
</ItemGroup>
1215

1316
<!-- SourceLink / build hygiene -->
1417
<PropertyGroup>
15-
<!-- Deterministic builds + embed sources for better debugging -->
1618
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
1719
<Deterministic>true</Deterministic>
1820
<EmbedUntrackedSources>true</EmbedUntrackedSources>
@@ -21,23 +23,27 @@
2123

2224
<!-- Package metadata applied only to packable projects -->
2325
<PropertyGroup Condition="'$(IsPackable)' == 'true'">
24-
<!-- NuGet README -->
2526
<PackageReadmeFile>README.md</PackageReadmeFile>
26-
27-
<!-- NuGet Release Notes link -->
27+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
28+
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
29+
<PackageIcon>assets/icon.png</PackageIcon>
2830
<PackageReleaseNotes>https://github.com/Stillpoint-Software/Hyperbee.Templating/releases/latest</PackageReleaseNotes>
29-
30-
<!-- Repository metadata (shows on NuGet) -->
3131
<RepositoryUrl>https://github.com/Stillpoint-Software/Hyperbee.Templating</RepositoryUrl>
3232
<RepositoryType>git</RepositoryType>
3333
<PackageProjectUrl>https://github.com/Stillpoint-Software/Hyperbee.Templating</PackageProjectUrl>
3434
</PropertyGroup>
3535

36-
<!-- Pull the root README into the package root -->
36+
<!-- Pull README & LICENSE into the package root -->
3737
<ItemGroup Condition="'$(IsPackable)' == 'true'">
38+
<None Include="..\..\assets\icon.png" Pack="true" Visible="false" PackagePath="/" />
3839
<None Include="$(MSBuildThisFileDirectory)README.md"
3940
Pack="true"
4041
PackagePath="\"
4142
Link="README.md" />
43+
44+
<None Include="$(MSBuildThisFileDirectory)LICENSE.txt"
45+
Pack="true"
46+
PackagePath="\"
47+
Link="LICENSE" />
4248
</ItemGroup>
43-
</Project>
49+
</Project>

Hyperbee.Templating.sln

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{870D9301-BE3D-44EA-BF9C-FCC2E87FE4CD}"
77
ProjectSection(SolutionItems) = preProject
88
Directory.Build.props = Directory.Build.props
9+
README.md = README.md
910
version.json = version.json
1011
EndProjectSection
1112
EndProject
@@ -19,12 +20,12 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{1FA7
1920
EndProject
2021
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{4DBDB7F5-3F66-4572-80B5-3322449C77A4}"
2122
ProjectSection(SolutionItems) = preProject
22-
.github\workflows\format.yml = .github\workflows\format.yml
23-
.github\workflows\create_test_report.yml = .github\workflows\create_test_report.yml
2423
.github\workflows\create_release.yml = .github\workflows\create_release.yml
24+
.github\workflows\create_test_report.yml = .github\workflows\create_test_report.yml
25+
.github\workflows\format.yml = .github\workflows\format.yml
26+
.github\workflows\issue_branch.yml = .github\workflows\issue_branch.yml
2527
.github\workflows\pack_publish.yml = .github\workflows\pack_publish.yml
2628
.github\workflows\run_tests.yml = .github\workflows\run_tests.yml
27-
.github\workflows\issue_branch.yml = .github\workflows\issue_branch.yml
2829
.github\workflows\unlist_package.yml = .github\workflows\unlist_package.yml
2930
EndProjectSection
3031
EndProject

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,4 +191,17 @@ Special thanks to:
191191

192192
## Contributing
193193

194-
We welcome contributions! Please see our [Contributing Guide](https://github.com/Stillpoint-Software/.github/blob/main/.github/CONTRIBUTING.md) for more details.
194+
We welcome contributions! Please see our [Contributing Guide](https://github.com/Stillpoint-Software/.github/blob/main/.github/CONTRIBUTING.md) for more details.
195+
196+
# Status
197+
198+
| Branch | Action |
199+
|------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
200+
| `develop` | [![Build status](https://github.com/Stillpoint-Software/Hyperbee.Templating/actions/workflows/pack_publish.yml/badge.svg?branch=develop)](https://github.com/Stillpoint-Software/Hyperbee.Templating/actions/workflows/pack_publish.yml) |
201+
| `main` | [![Build status](https://github.com/Stillpoint-Software/Hyperbee.Templating/actions/workflows/pack_publish.yml/badge.svg)](https://github.com/Stillpoint-Software/Hyperbee.Templating/actions/workflows/pack_publish.yml) |
202+
203+
# Help
204+
See [Todo](https://github.com/Stillpoint-Software/Hyperbee.Templating/blob/main/docs/todo.md)
205+
206+
[![Hyperbee.Templating](https://github.com/Stillpoint-Software/Hyperbee.Templating/blob/main/assets/hyperbee.svg?raw=true)](https://github.com/Stillpoint-Software/Hyperbee.Templating)
207+
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
## LICENSE
2+
3+
MIT License
4+
5+
Copyright (c) 2025 Stillpoint Software, Inc.
6+
7+
Permission is hereby granted, free of charge, to any person obtaining a copy
8+
of this software and associated documentation files (the "Software"), to deal
9+
in the Software without restriction, including without limitation the rights
10+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
copies of the Software, and to permit persons to whom the Software is
12+
furnished to do so, subject to the following conditions:
13+
14+
The above copyright notice and this permission notice shall be included in all
15+
copies or substantial portions of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23+
SOFTWARE.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
## LICENSE
2+
3+
MIT License
4+
5+
Copyright (c) 2025 Stillpoint Software, Inc.
6+
7+
Permission is hereby granted, free of charge, to any person obtaining a copy
8+
of this software and associated documentation files (the "Software"), to deal
9+
in the Software without restriction, including without limitation the rights
10+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
copies of the Software, and to permit persons to whom the Software is
12+
furnished to do so, subject to the following conditions:
13+
14+
The above copyright notice and this permission notice shall be included in all
15+
copies or substantial portions of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23+
SOFTWARE.

0 commit comments

Comments
 (0)