Skip to content

Commit cbb657b

Browse files
committed
configure github action, add third party notices
1 parent 639f185 commit cbb657b

5 files changed

Lines changed: 366 additions & 0 deletions

File tree

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: Create Release
2+
3+
on:
4+
push:
5+
tags:
6+
- '*'
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v4
16+
- name: Setup .NET
17+
uses: actions/setup-dotnet@v4
18+
with:
19+
dotnet-version: 8.0.x
20+
- name: Restore dependencies
21+
run: dotnet restore
22+
- name: Publish win-x64
23+
run: dotnet publish --no-restore --configuration Release --runtime win-x64 --no-self-contained
24+
- name: Test
25+
run: dotnet test --no-build --verbosity normal
26+
- name: Copy license win-x64
27+
run: |
28+
cp LICENSE.txt SharpIppNextServer/bin/Release/net8.0/win-x64/publish/LICENSE.txt
29+
- name: Install zip
30+
uses: montudor/action-zip@v1
31+
- name: Pack win-x64
32+
run: zip -qq -r "../../../SharpIppNextServer-${{github.ref_name}}-win-x64.zip" *.*
33+
working-directory: SharpIppNextServer/bin/Release/net8.0/win-x64/publish/
34+
- name: Publish linux-x64
35+
run: dotnet publish --no-restore --configuration Release --runtime linux-x64 --no-self-contained
36+
- name: Copy license linux-x64
37+
run: |
38+
cp LICENSE.txt SharpIppNextServer/bin/Release/net8.0/linux-x64/publish/LICENSE.txt
39+
- name: Pack linux-x64
40+
run: zip -qq -r ../../../SharpIppNextServer-${{github.ref_name}}-linux-x64.zip *.*
41+
working-directory: SharpIppNextServer/bin/Release/net8.0/linux-x64/publish/
42+
- name: Publish osx-x64
43+
run: dotnet publish --no-restore --configuration Release --runtime osx-x64 --no-self-contained
44+
- name: Copy license osx-x64
45+
run: |
46+
cp LICENSE.txt SharpIppNextServer/bin/Release/net8.0/osx-x64/publish/LICENSE.txt
47+
- name: Pack osx-x64
48+
run: zip -qq -r ../../../SharpIppNextServer-${{github.ref_name}}-osx-x64.zip *.*
49+
working-directory: SharpIppNextServer/bin/Release/net8.0/osx-x64/publish/
50+
- name: Create Release
51+
uses: ncipollo/release-action@v1
52+
with:
53+
artifacts: "SharpIppNextServer/bin/Release/*.zip"
54+
bodyFile: "RELEASE.md"

RELEASE.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Requirements
2+
3+
ASP.NET Core 8.0 Runtime needs to be installed.

Setup/Update-ThirdPartyNotices.ps1

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Push-Location
2+
cd "$PSScriptRoot\..\SharpIppNextServer"
3+
dotnet-thirdpartynotices --output-filename "THIRD-PARTY-NOTICES.txt"
4+
Pop-Location

SharpIppNextServer/SharpIppNextServer.csproj

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<TargetFramework>net8.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
7+
<StaticWebAssetsEnabled>false</StaticWebAssetsEnabled>
78
</PropertyGroup>
89

910
<ItemGroup>
@@ -19,4 +20,10 @@
1920
<PackageReference Include="System.IO.Abstractions" />
2021
</ItemGroup>
2122

23+
<ItemGroup>
24+
<None Update="THIRD-PARTY-NOTICES.txt">
25+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
26+
</None>
27+
</ItemGroup>
28+
2229
</Project>
Lines changed: 298 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,298 @@
1+
Microsoft.Extensions.Configuration.Abstractions.dll
2+
Microsoft.Extensions.DependencyInjection.Abstractions.dll
3+
Microsoft.Extensions.Diagnostics.Abstractions.dll
4+
Microsoft.Extensions.FileProviders.Abstractions.dll
5+
Microsoft.Extensions.Hosting.Abstractions.dll
6+
Microsoft.Extensions.Logging.Abstractions.dll
7+
Microsoft.Extensions.Options.dll
8+
Microsoft.Extensions.Primitives.dll
9+
System.Configuration.ConfigurationManager.dll
10+
System.Diagnostics.DiagnosticSource.dll
11+
System.Diagnostics.EventLog.dll
12+
System.Security.Cryptography.ProtectedData.dll
13+
runtimes\win\lib\net8.0\System.Diagnostics.EventLog.Messages.dll
14+
runtimes\win\lib\net8.0\System.Diagnostics.EventLog.dll
15+
----------------------------------------------------------------
16+
The MIT License (MIT)
17+
18+
Copyright (c) .NET Foundation and Contributors
19+
20+
All rights reserved.
21+
22+
Permission is hereby granted, free of charge, to any person obtaining a copy
23+
of this software and associated documentation files (the "Software"), to deal
24+
in the Software without restriction, including without limitation the rights
25+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
26+
copies of the Software, and to permit persons to whom the Software is
27+
furnished to do so, subject to the following conditions:
28+
29+
The above copyright notice and this permission notice shall be included in all
30+
copies or substantial portions of the Software.
31+
32+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
33+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
34+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
35+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
36+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
37+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
38+
SOFTWARE.
39+
40+
Quartz.dll
41+
Quartz.Extensions.DependencyInjection.dll
42+
Quartz.Extensions.Hosting.dll
43+
-----------------------------------------
44+
Apache License
45+
Version 2.0, January 2004
46+
http://www.apache.org/licenses/
47+
48+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
49+
50+
1. Definitions.
51+
52+
"License" shall mean the terms and conditions for use, reproduction,
53+
and distribution as defined by Sections 1 through 9 of this document.
54+
55+
"Licensor" shall mean the copyright owner or entity authorized by
56+
the copyright owner that is granting the License.
57+
58+
"Legal Entity" shall mean the union of the acting entity and all
59+
other entities that control, are controlled by, or are under common
60+
control with that entity. For the purposes of this definition,
61+
"control" means (i) the power, direct or indirect, to cause the
62+
direction or management of such entity, whether by contract or
63+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
64+
outstanding shares, or (iii) beneficial ownership of such entity.
65+
66+
"You" (or "Your") shall mean an individual or Legal Entity
67+
exercising permissions granted by this License.
68+
69+
"Source" form shall mean the preferred form for making modifications,
70+
including but not limited to software source code, documentation
71+
source, and configuration files.
72+
73+
"Object" form shall mean any form resulting from mechanical
74+
transformation or translation of a Source form, including but
75+
not limited to compiled object code, generated documentation,
76+
and conversions to other media types.
77+
78+
"Work" shall mean the work of authorship, whether in Source or
79+
Object form, made available under the License, as indicated by a
80+
copyright notice that is included in or attached to the work
81+
(an example is provided in the Appendix below).
82+
83+
"Derivative Works" shall mean any work, whether in Source or Object
84+
form, that is based on (or derived from) the Work and for which the
85+
editorial revisions, annotations, elaborations, or other modifications
86+
represent, as a whole, an original work of authorship. For the purposes
87+
of this License, Derivative Works shall not include works that remain
88+
separable from, or merely link (or bind by name) to the interfaces of,
89+
the Work and Derivative Works thereof.
90+
91+
"Contribution" shall mean any work of authorship, including
92+
the original version of the Work and any modifications or additions
93+
to that Work or Derivative Works thereof, that is intentionally
94+
submitted to Licensor for inclusion in the Work by the copyright owner
95+
or by an individual or Legal Entity authorized to submit on behalf of
96+
the copyright owner. For the purposes of this definition, "submitted"
97+
means any form of electronic, verbal, or written communication sent
98+
to the Licensor or its representatives, including but not limited to
99+
communication on electronic mailing lists, source code control systems,
100+
and issue tracking systems that are managed by, or on behalf of, the
101+
Licensor for the purpose of discussing and improving the Work, but
102+
excluding communication that is conspicuously marked or otherwise
103+
designated in writing by the copyright owner as "Not a Contribution."
104+
105+
"Contributor" shall mean Licensor and any individual or Legal Entity
106+
on behalf of whom a Contribution has been received by Licensor and
107+
subsequently incorporated within the Work.
108+
109+
2. Grant of Copyright License. Subject to the terms and conditions of
110+
this License, each Contributor hereby grants to You a perpetual,
111+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
112+
copyright license to reproduce, prepare Derivative Works of,
113+
publicly display, publicly perform, sublicense, and distribute the
114+
Work and such Derivative Works in Source or Object form.
115+
116+
3. Grant of Patent License. Subject to the terms and conditions of
117+
this License, each Contributor hereby grants to You a perpetual,
118+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
119+
(except as stated in this section) patent license to make, have made,
120+
use, offer to sell, sell, import, and otherwise transfer the Work,
121+
where such license applies only to those patent claims licensable
122+
by such Contributor that are necessarily infringed by their
123+
Contribution(s) alone or by combination of their Contribution(s)
124+
with the Work to which such Contribution(s) was submitted. If You
125+
institute patent litigation against any entity (including a
126+
cross-claim or counterclaim in a lawsuit) alleging that the Work
127+
or a Contribution incorporated within the Work constitutes direct
128+
or contributory patent infringement, then any patent licenses
129+
granted to You under this License for that Work shall terminate
130+
as of the date such litigation is filed.
131+
132+
4. Redistribution. You may reproduce and distribute copies of the
133+
Work or Derivative Works thereof in any medium, with or without
134+
modifications, and in Source or Object form, provided that You
135+
meet the following conditions:
136+
137+
(a) You must give any other recipients of the Work or
138+
Derivative Works a copy of this License; and
139+
140+
(b) You must cause any modified files to carry prominent notices
141+
stating that You changed the files; and
142+
143+
(c) You must retain, in the Source form of any Derivative Works
144+
that You distribute, all copyright, patent, trademark, and
145+
attribution notices from the Source form of the Work,
146+
excluding those notices that do not pertain to any part of
147+
the Derivative Works; and
148+
149+
(d) If the Work includes a "NOTICE" text file as part of its
150+
distribution, then any Derivative Works that You distribute must
151+
include a readable copy of the attribution notices contained
152+
within such NOTICE file, excluding those notices that do not
153+
pertain to any part of the Derivative Works, in at least one
154+
of the following places: within a NOTICE text file distributed
155+
as part of the Derivative Works; within the Source form or
156+
documentation, if provided along with the Derivative Works; or,
157+
within a display generated by the Derivative Works, if and
158+
wherever such third-party notices normally appear. The contents
159+
of the NOTICE file are for informational purposes only and
160+
do not modify the License. You may add Your own attribution
161+
notices within Derivative Works that You distribute, alongside
162+
or as an addendum to the NOTICE text from the Work, provided
163+
that such additional attribution notices cannot be construed
164+
as modifying the License.
165+
166+
You may add Your own copyright statement to Your modifications and
167+
may provide additional or different license terms and conditions
168+
for use, reproduction, or distribution of Your modifications, or
169+
for any such Derivative Works as a whole, provided Your use,
170+
reproduction, and distribution of the Work otherwise complies with
171+
the conditions stated in this License.
172+
173+
5. Submission of Contributions. Unless You explicitly state otherwise,
174+
any Contribution intentionally submitted for inclusion in the Work
175+
by You to the Licensor shall be under the terms and conditions of
176+
this License, without any additional terms or conditions.
177+
Notwithstanding the above, nothing herein shall supersede or modify
178+
the terms of any separate license agreement you may have executed
179+
with Licensor regarding such Contributions.
180+
181+
6. Trademarks. This License does not grant permission to use the trade
182+
names, trademarks, service marks, or product names of the Licensor,
183+
except as required for reasonable and customary use in describing the
184+
origin of the Work and reproducing the content of the NOTICE file.
185+
186+
7. Disclaimer of Warranty. Unless required by applicable law or
187+
agreed to in writing, Licensor provides the Work (and each
188+
Contributor provides its Contributions) on an "AS IS" BASIS,
189+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
190+
implied, including, without limitation, any warranties or conditions
191+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
192+
PARTICULAR PURPOSE. You are solely responsible for determining the
193+
appropriateness of using or redistributing the Work and assume any
194+
risks associated with Your exercise of permissions under this License.
195+
196+
8. Limitation of Liability. In no event and under no legal theory,
197+
whether in tort (including negligence), contract, or otherwise,
198+
unless required by applicable law (such as deliberate and grossly
199+
negligent acts) or agreed to in writing, shall any Contributor be
200+
liable to You for damages, including any direct, indirect, special,
201+
incidental, or consequential damages of any character arising as a
202+
result of this License or out of the use or inability to use the
203+
Work (including but not limited to damages for loss of goodwill,
204+
work stoppage, computer failure or malfunction, or any and all
205+
other commercial damages or losses), even if such Contributor
206+
has been advised of the possibility of such damages.
207+
208+
9. Accepting Warranty or Additional Liability. While redistributing
209+
the Work or Derivative Works thereof, You may choose to offer,
210+
and charge a fee for, acceptance of support, warranty, indemnity,
211+
or other liability obligations and/or rights consistent with this
212+
License. However, in accepting such obligations, You may act only
213+
on Your own behalf and on Your sole responsibility, not on behalf
214+
of any other Contributor, and only if You agree to indemnify,
215+
defend, and hold each Contributor harmless for any liability
216+
incurred by, or claims asserted against, such Contributor by reason
217+
of your accepting any such warranty or additional liability.
218+
219+
END OF TERMS AND CONDITIONS
220+
221+
APPENDIX: How to apply the Apache License to your work.
222+
223+
To apply the Apache License to your work, attach the following
224+
boilerplate notice, with the fields enclosed by brackets "[]"
225+
replaced with your own identifying information. (Don't include
226+
the brackets!) The text should be enclosed in the appropriate
227+
comment syntax for the file format. We also recommend that a
228+
file or class name and description of purpose be included on the
229+
same "printed page" as the copyright notice for easier
230+
identification within third-party archives.
231+
232+
Copyright 2007 Marko Lahma
233+
234+
Licensed under the Apache License, Version 2.0 (the "License");
235+
you may not use this file except in compliance with the License.
236+
You may obtain a copy of the License at
237+
238+
http://www.apache.org/licenses/LICENSE-2.0
239+
240+
Unless required by applicable law or agreed to in writing, software
241+
distributed under the License is distributed on an "AS IS" BASIS,
242+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
243+
See the License for the specific language governing permissions and
244+
limitations under the License.
245+
246+
SharpIpp.dll
247+
------------
248+
MIT License
249+
250+
Copyright (c) 2023 Daniel Klecha
251+
Copyright (c) 2020 Evgeny Zelenov
252+
253+
Permission is hereby granted, free of charge, to any person obtaining a copy
254+
of this software and associated documentation files (the "Software"), to deal
255+
in the Software without restriction, including without limitation the rights
256+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
257+
copies of the Software, and to permit persons to whom the Software is
258+
furnished to do so, subject to the following conditions:
259+
260+
The above copyright notice and this permission notice shall be included in all
261+
copies or substantial portions of the Software.
262+
263+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
264+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
265+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
266+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
267+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
268+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
269+
SOFTWARE.
270+
271+
System.IO.Abstractions.dll
272+
TestableIO.System.IO.Abstractions.dll
273+
TestableIO.System.IO.Abstractions.Wrappers.dll
274+
----------------------------------------------
275+
The MIT License (MIT)
276+
277+
Copyright (c) Tatham Oddie and Contributors
278+
279+
All rights reserved.
280+
281+
Permission is hereby granted, free of charge, to any person obtaining a copy
282+
of this software and associated documentation files (the "Software"), to deal
283+
in the Software without restriction, including without limitation the rights
284+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
285+
copies of the Software, and to permit persons to whom the Software is
286+
furnished to do so, subject to the following conditions:
287+
288+
The above copyright notice and this permission notice shall be included in all
289+
copies or substantial portions of the Software.
290+
291+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
292+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
293+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
294+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
295+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
296+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
297+
SOFTWARE.
298+

0 commit comments

Comments
 (0)