Skip to content

Commit b68e462

Browse files
committedMay 2, 2024
Update third party notices
1 parent ea5f3f0 commit b68e462

File tree

4 files changed

+3933
-156
lines changed

4 files changed

+3933
-156
lines changed
 

‎.gitignore

+8-79
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,8 @@
1-
_ReSharper*
2-
[Bb]in
3-
bin-nano
4-
obj
5-
objd
6-
out/
7-
tmp/
8-
.tmp
9-
App_Data
10-
*.user
11-
*.sln.cache
12-
*.suo
13-
TestResults
14-
test/emacs-session.json
15-
[Tt]humbs.db
16-
buildd.*
17-
release/
18-
*.log
19-
*.bak
20-
packages
21-
OACRTemp/
22-
build_logs/
23-
lock
24-
/public/inc/bldver.*
25-
/public/inc/sources.ver
26-
/data
27-
/target
28-
.corext/gen
29-
registered_data.ini
30-
.vs/
31-
.dotnet/
32-
module/Plaster
33-
module/PSScriptAnalyzer
34-
module/PSReadLine
35-
docs/_site/
36-
docs/_repo/
37-
docs/metadata/
38-
*.zip
39-
40-
# Generated build info file
41-
src/PowerShellEditorServices.Hosting/BuildInfo.cs
42-
43-
# quickbuild.exe
44-
/VersionGeneratingLogs/
45-
QLogs
46-
QLocal
47-
QTestLogs
48-
49-
# bad tlb/chm generators in nmake tree
50-
*.tlb
51-
*.chm
52-
53-
# dumb silverlight
54-
ClientBin/
55-
56-
# dump azure
57-
*.build.csdef
58-
csx/
59-
60-
# Don't include ScriptAnalyzer binaries
61-
PowerShellEditorServices/**
62-
PowerShellEditorServices.NoNano/**
63-
64-
PowerShellEditorServices.sln.ide/edb.chk
65-
PowerShellEditorServices.sln.ide/edbres00001.jrs
66-
PowerShellEditorServices.sln.ide/storage.ide
67-
*.jrs
68-
69-
# Don't include PlatyPS generated MAML
70-
module/PowerShellEditorServices/Commands/en-US/*-help.xml
71-
72-
# Don't include Third Party Notices in module folder
73-
module/PowerShellEditorServices/Third\ Party\ Notices.txt
74-
75-
# Visual Studio for Mac generated file
76-
*.userprefs
77-
78-
# JetBrains generated file (Rider, intelliJ)
79-
.idea/
1+
bin/
2+
obj/
3+
module/PowerShellEditorServices/NOTICE.txt
4+
module/PowerShellEditorServices/Commands/en-US/
5+
module/Plaster/
6+
module/PSReadLine/
7+
module/PSScriptAnalyzer/
8+
TestResults/

‎NOTICE.txt

+3,923
Large diffs are not rendered by default.

‎PowerShellEditorServices.build.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -296,8 +296,8 @@ Task LayoutModule -After Build {
296296
New-Item -Force -Path $dir -ItemType Directory | Out-Null
297297
}
298298

299-
# Copy Third Party Notices.txt to module folder
300-
Copy-Item -Force -Path "$PSScriptRoot\Third Party Notices.txt" -Destination $psesOutputPath
299+
# Copy third party notices to module folder
300+
Copy-Item -Force -Path "$PSScriptRoot\NOTICE.txt" -Destination $psesOutputPath
301301

302302
# Assemble PSES module
303303

‎Third Party Notices.txt

-75
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.