aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-05-11 07:14:55 -0700
committerRob Mensching <rob@firegiant.com>2021-05-11 07:34:31 -0700
commit2e5ab696b8b4666d551b2a0532b95fb7fe6dbe03 (patch)
tree6462a1aff407edda2f91e1d57a9a9eb3d205c5c3
downloadwix-2e5ab696b8b4666d551b2a0532b95fb7fe6dbe03.tar.gz
wix-2e5ab696b8b4666d551b2a0532b95fb7fe6dbe03.tar.bz2
wix-2e5ab696b8b4666d551b2a0532b95fb7fe6dbe03.zip
Initialize repo
-rw-r--r--.gitattributes2
-rw-r--r--.gitignore388
-rw-r--r--LICENSE.TXT28
-rw-r--r--README.md5
4 files changed, 423 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 00000000..dfe07704
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,2 @@
1# Auto detect text files and perform LF normalization
2* text=auto
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..34c8dee4
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,388 @@
1## Ignore Visual Studio temporary files, build results, and
2## files generated by popular Visual Studio add-ons.
3##
4## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
5
6# User-specific files
7*.rsuser
8*.suo
9*.user
10*.userosscache
11*.sln.docstates
12
13# User-specific files (MonoDevelop/Xamarin Studio)
14*.userprefs
15
16# Mono auto generated files
17mono_crash.*
18
19# Build results
20[Dd]ebug/
21[Dd]ebugPublic/
22[Rr]elease/
23[Rr]eleases/
24x64/
25x86/
26[Ww][Ii][Nn]32/
27[Aa][Rr][Mm]/
28[Aa][Rr][Mm]64/
29bld/
30[Bb]in/
31[Oo]bj/
32[Ll]og/
33[Ll]ogs/
34
35# Visual Studio 2015/2017 cache/options directory
36.vs/
37# Uncomment if you have tasks that create the project's static files in wwwroot
38#wwwroot/
39
40# Visual Studio 2017 auto generated files
41Generated\ Files/
42
43# MSTest test Results
44[Tt]est[Rr]esult*/
45[Bb]uild[Ll]og.*
46
47# NUnit
48*.VisualState.xml
49TestResult.xml
50nunit-*.xml
51
52# Build Results of an ATL Project
53[Dd]ebugPS/
54[Rr]eleasePS/
55dlldata.c
56
57# Benchmark Results
58BenchmarkDotNet.Artifacts/
59
60# .NET Core
61project.lock.json
62project.fragment.lock.json
63artifacts/
64
65# ASP.NET Scaffolding
66ScaffoldingReadMe.txt
67
68# StyleCop
69StyleCopReport.xml
70
71# Files built by Visual Studio
72*_i.c
73*_p.c
74*_h.h
75*.ilk
76*.meta
77*.obj
78*.iobj
79*.pch
80*.pdb
81*.ipdb
82*.pgc
83*.pgd
84*.rsp
85*.sbr
86*.tlb
87*.tli
88*.tlh
89*.tmp
90*.tmp_proj
91*_wpftmp.csproj
92*.log
93*.tlog
94*.vspscc
95*.vssscc
96.builds
97*.pidb
98*.svclog
99*.scc
100
101# Chutzpah Test files
102_Chutzpah*
103
104# Visual C++ cache files
105ipch/
106*.aps
107*.ncb
108*.opendb
109*.opensdf
110*.sdf
111*.cachefile
112*.VC.db
113*.VC.VC.opendb
114
115# Visual Studio profiler
116*.psess
117*.vsp
118*.vspx
119*.sap
120
121# Visual Studio Trace Files
122*.e2e
123
124# TFS 2012 Local Workspace
125$tf/
126
127# Guidance Automation Toolkit
128*.gpState
129
130# ReSharper is a .NET coding add-in
131_ReSharper*/
132*.[Rr]e[Ss]harper
133*.DotSettings.user
134
135# TeamCity is a build add-in
136_TeamCity*
137
138# DotCover is a Code Coverage Tool
139*.dotCover
140
141# AxoCover is a Code Coverage Tool
142.axoCover/*
143!.axoCover/settings.json
144
145# Coverlet is a free, cross platform Code Coverage Tool
146coverage*.json
147coverage*.xml
148coverage*.info
149
150# Visual Studio code coverage results
151*.coverage
152*.coveragexml
153
154# NCrunch
155_NCrunch_*
156.*crunch*.local.xml
157nCrunchTemp_*
158
159# MightyMoose
160*.mm.*
161AutoTest.Net/
162
163# Web workbench (sass)
164.sass-cache/
165
166# Installshield output folder
167[Ee]xpress/
168
169# DocProject is a documentation generator add-in
170DocProject/buildhelp/
171DocProject/Help/*.HxT
172DocProject/Help/*.HxC
173DocProject/Help/*.hhc
174DocProject/Help/*.hhk
175DocProject/Help/*.hhp
176DocProject/Help/Html2
177DocProject/Help/html
178
179# Click-Once directory
180publish/
181
182# Publish Web Output
183*.[Pp]ublish.xml
184*.azurePubxml
185# Note: Comment the next line if you want to checkin your web deploy settings,
186# but database connection strings (with potential passwords) will be unencrypted
187*.pubxml
188*.publishproj
189
190# Microsoft Azure Web App publish settings. Comment the next line if you want to
191# checkin your Azure Web App publish settings, but sensitive information contained
192# in these scripts will be unencrypted
193PublishScripts/
194
195# NuGet Packages
196*.nupkg
197# NuGet Symbol Packages
198*.snupkg
199# The packages folder can be ignored because of Package Restore
200**/[Pp]ackages/*
201# except build/, which is used as an MSBuild target.
202!**/[Pp]ackages/build/
203# Uncomment if necessary however generally it will be regenerated when needed
204#!**/[Pp]ackages/repositories.config
205# NuGet v3's project.json files produces more ignorable files
206*.nuget.props
207*.nuget.targets
208
209# Nuget personal access tokens and Credentials
210nuget.config
211
212# Microsoft Azure Build Output
213csx/
214*.build.csdef
215
216# Microsoft Azure Emulator
217ecf/
218rcf/
219
220# Windows Store app package directories and files
221AppPackages/
222BundleArtifacts/
223Package.StoreAssociation.xml
224_pkginfo.txt
225*.appx
226*.appxbundle
227*.appxupload
228
229# Visual Studio cache files
230# files ending in .cache can be ignored
231*.[Cc]ache
232# but keep track of directories ending in .cache
233!?*.[Cc]ache/
234
235# Others
236ClientBin/
237~$*
238*~
239*.dbmdl
240*.dbproj.schemaview
241*.jfm
242*.pfx
243*.publishsettings
244orleans.codegen.cs
245
246# Including strong name files can present a security risk
247# (https://github.com/github/gitignore/pull/2483#issue-259490424)
248#*.snk
249
250# Since there are multiple workflows, uncomment next line to ignore bower_components
251# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
252#bower_components/
253
254# RIA/Silverlight projects
255Generated_Code/
256
257# Backup & report files from converting an old project file
258# to a newer Visual Studio version. Backup files are not needed,
259# because we have git ;-)
260_UpgradeReport_Files/
261Backup*/
262UpgradeLog*.XML
263UpgradeLog*.htm
264ServiceFabricBackup/
265*.rptproj.bak
266
267# SQL Server files
268*.mdf
269*.ldf
270*.ndf
271
272# Business Intelligence projects
273*.rdl.data
274*.bim.layout
275*.bim_*.settings
276*.rptproj.rsuser
277*- [Bb]ackup.rdl
278*- [Bb]ackup ([0-9]).rdl
279*- [Bb]ackup ([0-9][0-9]).rdl
280
281# Microsoft Fakes
282FakesAssemblies/
283
284# GhostDoc plugin setting file
285*.GhostDoc.xml
286
287# Node.js Tools for Visual Studio
288.ntvs_analysis.dat
289node_modules/
290
291# Visual Studio 6 build log
292*.plg
293
294# Visual Studio 6 workspace options file
295*.opt
296
297# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
298*.vbw
299
300# Visual Studio LightSwitch build output
301**/*.HTMLClient/GeneratedArtifacts
302**/*.DesktopClient/GeneratedArtifacts
303**/*.DesktopClient/ModelManifest.xml
304**/*.Server/GeneratedArtifacts
305**/*.Server/ModelManifest.xml
306_Pvt_Extensions
307
308# Paket dependency manager
309.paket/paket.exe
310paket-files/
311
312# FAKE - F# Make
313.fake/
314
315# CodeRush personal settings
316.cr/personal
317
318# Python Tools for Visual Studio (PTVS)
319__pycache__/
320*.pyc
321
322# Cake - Uncomment if you are using it
323# tools/**
324# !tools/packages.config
325
326# Tabs Studio
327*.tss
328
329# Telerik's JustMock configuration file
330*.jmconfig
331
332# BizTalk build output
333*.btp.cs
334*.btm.cs
335*.odx.cs
336*.xsd.cs
337
338# OpenCover UI analysis results
339OpenCover/
340
341# Azure Stream Analytics local run output
342ASALocalRun/
343
344# MSBuild Binary and Structured Log
345*.binlog
346
347# NVidia Nsight GPU debugger configuration file
348*.nvuser
349
350# MFractors (Xamarin productivity tool) working folder
351.mfractor/
352
353# Local History for Visual Studio
354.localhistory/
355
356# BeatPulse healthcheck temp database
357healthchecksdb
358
359# Backup folder for Package Reference Convert tool in Visual Studio 2017
360MigrationBackup/
361
362# Ionide (cross platform F# VS Code tools) working folder
363.ionide/
364
365# Fody - auto-generated XML schema
366FodyWeavers.xsd
367
368# VS Code files for those working on multiple tools
369.vscode/*
370!.vscode/settings.json
371!.vscode/tasks.json
372!.vscode/launch.json
373!.vscode/extensions.json
374*.code-workspace
375
376# Local History for Visual Studio Code
377.history/
378
379# Windows Installer files from build outputs
380*.cab
381*.msi
382*.msix
383*.msm
384*.msp
385
386# JetBrains Rider
387.idea/
388*.sln.iml
diff --git a/LICENSE.TXT b/LICENSE.TXT
new file mode 100644
index 00000000..d4d316ef
--- /dev/null
+++ b/LICENSE.TXT
@@ -0,0 +1,28 @@
1Copyright (c) .NET Foundation and contributors.
2This software is released under the Microsoft Reciprocal License (MS-RL) (the "License"); you may not use the software except in compliance with the License.
3
4The text of the Microsoft Reciprocal License (MS-RL) can be found online at:
5 http://opensource.org/licenses/ms-rl
6
7
8Microsoft Reciprocal License (MS-RL)
9
10This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software.
11
121. Definitions
13 The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law.
14 A "contribution" is the original software, or any additions or changes to the software.
15 A "contributor" is any person that distributes its contribution under this license.
16 "Licensed patents" are a contributor's patent claims that read directly on its contribution.
17
182. Grant of Rights
19 (A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create.
20 (B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software.
21
223. Conditions and Limitations
23 (A) Reciprocal Grants- For any file you distribute that contains code from the software (in source code or binary format), you must provide recipients the source code to that file along with a copy of this license, which license will govern that file. You may license other files that are entirely your own work and do not contain code from the software under any terms you choose.
24 (B) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks.
25 (C) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically.
26 (D) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software.
27 (E) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license.
28 (F) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement.
diff --git a/README.md b/README.md
new file mode 100644
index 00000000..dab171c6
--- /dev/null
+++ b/README.md
@@ -0,0 +1,5 @@
1<img src="https://github.com/wixtoolset/Home/raw/master/imgs/wix-white-bg.png" alt="WiX Toolset" height="128" />
2
3# WiX Toolset v4
4
5This repository contains the WiX Toolset v4 codebase.