Skip to content
This repository was archived by the owner on Feb 14, 2025. It is now read-only.

Commit 64b0758

Browse files
committed
Initial integration
1 parent 4513d3b commit 64b0758

File tree

378 files changed

+67536
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

378 files changed

+67536
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# WiX Toolset Visual Studio Extension (aka: Votive)
2+
3+
This repository contains the code for the WiX Toolset Visual Studio Extension. To install
4+
the extension, use the Extension Manager inside Visual Studio or visit the
5+
[Visual Studio Marketplace][marketplace].
6+
7+
The following links will take you to more details:
8+
9+
## [Home page](http://wixtoolset.org/ "WiX Toolset home page")
10+
## [Releases](http://wixtoolset.org/releases/ "WiX Toolset stable and weekly releases")
11+
## [Bugs and feature requests](http://wixtoolset.org/issues/ "Files bugs and feature requests for WiX Toolset ")
12+
## [Manual](http://wixtoolset.org/documentation/manual/ "WiX Toolset manuals and documentation links")
13+
## [Hacking on WiX](http://wixtoolset.org/development/ "About development on the WiX Toolset")
14+
15+
[marketplace]: https://marketplace.visualstudio.com/search?term=wix%20toolset&target=VS&sortBy=Relevance

appveyor.yml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
-
2+
version: 0.0.0.{build}
3+
configuration: Release
4+
5+
install:
6+
- ps: Start-Process (Get-ChildItem -Path "${env:ProgramFiles(x86)}\Microsoft SDKs\Windows" -Filter sn.exe -Recurse | Select-Object -First 1).FullName -ArgumentList "-q -Vr *,ce35f76fcda82bad"
7+
8+
before_build:
9+
- nuget restore
10+
11+
build:
12+
project: votive.sln
13+
14+
skip_tags: true
15+
16+
-
17+
branches:
18+
only:
19+
- master
20+
21+
version: 0.0.0.{build}
22+
configuration: Release
23+
24+
environment:
25+
KeyPairDownloadToken:
26+
secure: U5OkonXbnqz0MB5NLRcfxdPvz7bG9QWHRt8ZeldmeSpoqW6GmkAirTlIDU1OZAW8pWIyz6LrTeTVRntzVSRoXw6pwRYfYO+Zzl43RHd7UvmPEPKvrqiqlDBT9+TrFPmOdvm13FaX4ljs19K94ALL9w==
27+
28+
install:
29+
- ps: $env:OFFICIAL_WIX_BUILD=$ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath(".\wix4_keypair.snk")
30+
- ps: Start-FileDownload -Url "https://wixdl.blob.core.windows.net/secure/keys/wix4_keypair.snk${env:KeyPairDownloadToken}" -FileName "${env:OFFICIAL_WIX_BUILD}"
31+
32+
before_build:
33+
- nuget restore
34+
35+
build:
36+
project: votive.sln
37+
38+
after_build:
39+
- ps: Remove-Item "${env:OFFICIAL_WIX_BUILD}"
40+
41+
skip_tags: true
42+
43+
artifacts:
44+
- path: build\Release\**\*.vsix
45+
46+
deploy:
47+
provider: GitHub
48+
tag: v$(GitBuildVersion)
49+
release: WiX Toolset Visual Studio Extensions v$(GitBuildVersion)
50+
description: 'WiX Toolset Visual Studio Extensions (aka: Votive) release v$(GitBuildVersion)'
51+
artifact: /.*\.vsix/
52+
prerelease: true
53+
auth_token:
54+
secure: BuuXJ8z8dMoeeMPy4l7QbbNPFn1/CW9PRGZxMhH3IAFdtTftFKZHA7eqpBqiE2T3

src/Icons/IncludeFile.ico

96.3 KB
Binary file not shown.

src/Icons/LocalizationFile.ico

103 KB
Binary file not shown.

src/Icons/ProductFile.ico

78.6 KB
Binary file not shown.

src/Icons/ProjectFile.ico

81.9 KB
Binary file not shown.

src/Icons/WixBundle.ico

9.9 KB
Binary file not shown.

src/Icons/WixLibrary.ico

9.9 KB
Binary file not shown.

src/Icons/WixLibraryFile.ico

109 KB
Binary file not shown.

src/Icons/WixMergeModule.ico

9.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)