Skip to content

Commit

Permalink
updated appveyor to version and package solution
Browse files Browse the repository at this point in the history
  • Loading branch information
dubeaud committed Jun 6, 2015
1 parent 0fe544d commit ba484d5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 15 deletions.
24 changes: 10 additions & 14 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@ version: 1.0.0.{build}
# environment configuration #
#---------------------------------#

# environment variables
environment:
UnitTest: false
# enable patching of AssemblyInfo.* files

# enable service required for build/tests
services:
- mssql2014 # start SQL Server 2014 Express
assembly_info:
patch: true
file: src\Common\GlobalAssemblyInfo.cs
assembly_version: "{version}"
assembly_file_version: "{version}"
assembly_informational_version: "{version}"


#---------------------------------#
Expand All @@ -28,11 +29,11 @@ services:
configuration: Release

build:
project: src\BuildScripts\build.proj
project: src\BugNET.sln
verbosity: minimal
publish_wap: true



#---------------------------------#
# tests configuration #
#---------------------------------#
Expand All @@ -42,13 +43,8 @@ test: off
#---------------------------------#
# artifacts configuration #
#---------------------------------#

artifacts:
# pushing entire folder as a zip archive
- path: src\build\dist
name: BugNet-$(configuration)
type: zip

# web deploy artifacts are copied already

#---------------------------------#
# deployment configuration #
Expand Down
9 changes: 8 additions & 1 deletion src/BugNET_WAP/BugNET_WAP.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3503,13 +3503,20 @@
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />

<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Other similar extension points exist, see Microsoft.Common.targets.-->
<Target Name="BeforeBuild">
<Copy Condition="'$(APPVEYOR)' != '' And '$(APPVEYOR)' And Exists('Providers\DataProviders\SqlDataProvider\Latest.SqlDataProvider.sql')"
SourceFiles="Providers\DataProviders\SqlDataProvider\Latest.SqlDataProvider.sql"
DestinationFiles="Providers\DataProviders\SqlDataProvider\$(APPVEYOR_BUILD_VERSION).SqlDataProvider.sql" />
<Delete Condition="'$(APPVEYOR)' != '' And '$(APPVEYOR)'" Files="Providers\DataProviders\SqlDataProvider\Latest.SqlDataProvider.sql" />
</Target>
<!--
<Target Name="AfterBuild">
</Target>
-->

<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
Expand Down

0 comments on commit ba484d5

Please sign in to comment.