-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
86 lines (77 loc) · 3.4 KB
/
Copy path.gitignore
File metadata and controls
86 lines (77 loc) · 3.4 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# ==========================================================================
# Microsoft binaries (license / distribution concerns)
# ==========================================================================
# Office Deployment Tool - shared source used by Build-IntuneWinPackages.ps1
Source/setup.exe
# Intune Win32 Content Prep Tool (download from microsoft/Microsoft-Win32-Content-Prep-Tool)
Build/IntuneWinAppUtil.exe
# setup.exe wherever it lands - both the build-pipeline staged copy under
# Build/Staging/<Product>/Tools/ and the optional per-product source-tree
# override at <Product>/Tools/setup.exe.
**/Tools/setup.exe
# ==========================================================================
# Binary build artefacts (no value as committed text)
# ==========================================================================
Build/Output/**/*.intunewin
# ==========================================================================
# Per-fork build configuration (org-specific token values)
# build-config.example.json is committed as the template; build-config.json
# is the local copy that holds real values like CompanyName.
# ==========================================================================
build-config.json
# ==========================================================================
# Tooling manifest written by Source\Update-Tooling.ps1
# Records local-state metadata (versions, source URLs, downloadedAt
# timestamps) for the Microsoft binaries that aren't themselves committed.
# Changes per run; describes binaries this fork's clone doesn't carry.
# ==========================================================================
Source/tooling-versions.json
# ==========================================================================
# Browsable build outputs (intentionally COMMITTED so the deployed-package
# layout is readable on GitHub without a clone-and-build):
# Build/Staging/<Product>/ - scripts + Configurations\ + Common\
# (mirrors what Intune extracts on a client)
# Build/Output/<Product>/ - IntuneConfig.md + DetectionScripts\
# (admin-facing upload artefacts)
# Only the binaries above (.intunewin, setup.exe) are excluded.
# ==========================================================================
# ==========================================================================
# Local log output (lab / test logs are not committed)
# ==========================================================================
Logs/
*.log
!docs/**/*.log
# ==========================================================================
# PowerShell / Pester
# ==========================================================================
TestResults.xml
coverage.xml
*.Tests.PesterResults.xml
# ==========================================================================
# Editors / IDEs / Agents
# ==========================================================================
.vscode/
.vs/
*.suo
*.user
*.userprefs
.idea/
*.code-workspace
.claude/
# ==========================================================================
# OS metadata
# ==========================================================================
Thumbs.db
ehthumbs.db
Desktop.ini
.DS_Store
$RECYCLE.BIN/
# ==========================================================================
# Temp / local
# ==========================================================================
*.tmp
*.bak
*.swp
*~
.local/
local/