Last active
September 22, 2016 04:15
-
-
Save FeodorFitsner/df45eb828ee4a8c9e9b1 to your computer and use it in GitHub Desktop.
Minimal appveyor.yml for .NET project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
configuration: Release | |
# enable AssemblyInfo.cs patching with build version number | |
assembly_info: | |
patch: true | |
file: AssemblyInfo.* | |
assembly_version: "{version}" | |
assembly_file_version: "{version}" | |
assembly_informational_version: "{version}" | |
# restore NuGet packages before running MSBuild | |
before_build: | |
- nuget restore | |
# package Web Application project for Web Deploy | |
build: | |
verbosity: minimal | |
publish_wap: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment