diff --git a/README.md b/README.md index 513e5d5..b20ca9b 100644 --- a/README.md +++ b/README.md @@ -7,42 +7,7 @@ Package developers can install their VSIX extensions for Visual Studio using thi Other deployments may also benefit since they no longer have to find where _VSIXInstaller.exe_ is installed. The command line passed to _VSIXBootstrapper.exe_ is passed through to _VSIXInstaller.exe_. -## Authoring - -An example using [WiX][] authoring to include a _.vsix_ package in the Burn chain itself. - -```xml - - - - - - - - - - - - - - -``` - -Here both _VSIXBootstrapper.exe_ and _MyVSIX.vsix_ (with extension ID "MyVSIX") are compressed in the attached bundle container. Separate `PayloadGroup` elements were used so that you can share _VSIXBootstrapper.exe_ for multiple extensions. You could also specify the `DownloadUrl` attribute instead of compressing these to support web downloads and layouts. - -For more examples, please see the [Wiki][]. +See our [samples](https://github.com/Microsoft/vsixbootstrapper/wiki/Samples) for ideas how to use _VSIXBootstrapper.exe_. ## Feedback @@ -54,7 +19,7 @@ This project is licensed under the [MIT license](LICENSE.txt). ## Status -This project uses a Git flow model releasing from the `master` branch with development based on and stabilize in the `develop` branch. +This project uses a Git flow model releasing from the `master` branch with development based on and stabilized in the `develop` branch. Branch | AppVeyor | VSTS ------ | ------ | ------- @@ -62,5 +27,4 @@ master | [![build status: master](https://ci.appveyor.com/api/projects/status/8 develop | [![build status: develop](https://ci.appveyor.com/api/projects/status/8kj7280gctbttf3b/branch/develop?svg=true)](https://ci.appveyor.com/project/heaths/vsixbootstrapper/branch/develop) [issues]: https://github.com/Microsoft/vsixbootstrapper/issues - [wiki]: https://github.com/Microsoft/vsixbootstrapper/wiki [wix]: http://wixtoolset.org diff --git a/src/VSIXBootstrapper/VSIXBootstrapper.vcxproj b/src/VSIXBootstrapper/VSIXBootstrapper.vcxproj index 9bca1ba..97e3f65 100644 --- a/src/VSIXBootstrapper/VSIXBootstrapper.vcxproj +++ b/src/VSIXBootstrapper/VSIXBootstrapper.vcxproj @@ -116,19 +116,19 @@ - + This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - + - + \ No newline at end of file diff --git a/src/VSIXBootstrapper/packages.config b/src/VSIXBootstrapper/packages.config index e934c45..a1566ba 100644 --- a/src/VSIXBootstrapper/packages.config +++ b/src/VSIXBootstrapper/packages.config @@ -1,7 +1,7 @@  - + \ No newline at end of file diff --git a/test/VSIXBootstrapper.Test/VSIXBootstrapper.Test.vcxproj b/test/VSIXBootstrapper.Test/VSIXBootstrapper.Test.vcxproj index 386f7da..87f21f9 100644 --- a/test/VSIXBootstrapper.Test/VSIXBootstrapper.Test.vcxproj +++ b/test/VSIXBootstrapper.Test/VSIXBootstrapper.Test.vcxproj @@ -114,8 +114,8 @@ - + @@ -123,7 +123,7 @@ - + - + \ No newline at end of file diff --git a/test/VSIXBootstrapper.Test/packages.config b/test/VSIXBootstrapper.Test/packages.config index dc87a03..59e2ddf 100644 --- a/test/VSIXBootstrapper.Test/packages.config +++ b/test/VSIXBootstrapper.Test/packages.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/tools/Publish-Release.ps1 b/tools/Publish-Release.ps1 index b9caed7..945103c 100644 --- a/tools/Publish-Release.ps1 +++ b/tools/Publish-Release.ps1 @@ -1,4 +1,7 @@ -[CmdletBinding()] +# Copyright (C) Microsoft Corporation. All rights reserved. +# Licensed under the MIT license. See LICENSE.txt in the project root for license information. + +[CmdletBinding()] param ( [Parameter(Mandatory = $true)] [string] $Token, diff --git a/version.json b/version.json index 3984b1d..06ef28f 100644 --- a/version.json +++ b/version.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "1.0.0-rc", + "version": "1.0.0", "assemblyVersion": "1.0", "publicReleaseRefSpec": [ "^refs/heads/master$",