Skip to content

Commit

Permalink
Merge pull request #60 from punker76/dev
Browse files Browse the repository at this point in the history
Merge dev to master for v1.4.1
  • Loading branch information
punker76 authored Nov 7, 2017
2 parents dab43c4 + 03cd4c0 commit 725b6e7
Show file tree
Hide file tree
Showing 19 changed files with 470 additions and 75 deletions.
11 changes: 8 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,15 @@ end_of_line = CRLF

; 4-column tab indentation
[*.cs]
indent_style = tab
indent_style = space
indent_size = 4

; 4-column tab indentation
[*.xaml]
indent_style = tab
indent_size = 4
indent_style = space
indent_size = 4

; 4-column tab indentation
[*.xml]
indent_style = space
indent_size = 4
97 changes: 86 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,35 @@
# User-specific files
*.suo
*.user
*.userosscache
*.sln.docstates

# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
build/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/

# Roslyn cache directories
*.ide/
# Visual Studio 2015 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/

# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*

#NUNIT
# NUNIT
*.VisualState.xml
TestResult.xml

Expand All @@ -33,6 +41,10 @@ TestResult.xml
[Rr]eleasePS/
dlldata.c

# DNX
project.lock.json
artifacts/

*_i.c
*_p.c
*_i.h
Expand Down Expand Up @@ -65,14 +77,18 @@ _Chutzpah*
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile
*.VC.db
*.VC.VC.opendb

# Visual Studio profiler
*.psess
*.vsp
*.vspx
*.sap

# TFS 2012 Local Workspace
$tf/
Expand All @@ -85,7 +101,7 @@ _ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user

# JustCode is a .NET coding addin-in
# JustCode is a .NET coding add-in
.JustCode

# TeamCity is a build add-in
Expand All @@ -97,6 +113,7 @@ _TeamCity*
# NCrunch
_NCrunch_*
.*crunch*.local.xml
nCrunchTemp_*

# MightyMoose
*.mm.*
Expand Down Expand Up @@ -124,38 +141,65 @@ publish/
# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
# TODO: Comment the next line if you want to checkin your web deploy settings
# TODO: Comment the next line if you want to checkin your web deploy settings
# but database connection strings (with potential passwords) will be unencrypted
*.pubxml
*.publishproj

# Microsoft Azure Web App publish settings. Comment the next line if you want to
# checkin your Azure Web App publish settings, but sensitive information contained
# in these scripts will be unencrypted
PublishScripts/

# NuGet Packages
*.nupkg
# The packages folder can be ignored because of Package Restore
**/packages/*
# except build/, which is used as an MSBuild target.
!**/packages/build/
# If using the old MSBuild-Integrated Package Restore, uncomment this:
# Uncomment if necessary however generally it will be regenerated when needed
#!**/packages/repositories.config
# NuGet v3's project.json files produces more ignoreable files
*.nuget.props
*.nuget.targets

# scriptcs
**/scriptcs_packages/*

# Windows Azure Build Output
# Microsoft Azure Build Output
csx/
*.build.csdef

# Windows Store app package directory
# Microsoft Azure Emulator
ecf/
rcf/

# Windows Store app package directories and files
AppPackages/
BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt

# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!*.[Cc]ache/

# Others
sql/
*.Cache
ClientBin/
[Ss]tyle[Cc]op.*
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.pfx
*.publishsettings
node_modules/
orleans.codegen.cs

# Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/

# RIA/Silverlight projects
Generated_Code/
Expand All @@ -179,3 +223,34 @@ UpgradeLog*.htm

# Microsoft Fakes
FakesAssemblies/

# GhostDoc plugin setting file
*.GhostDoc.xml

# Node.js Tools for Visual Studio
.ntvs_analysis.dat

# Visual Studio 6 build log
*.plg

# Visual Studio 6 workspace options file
*.opt

# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions

# Paket dependency manager
#.paket/paket.exe
paket-files/

# FAKE - F# Make
.fake/

# JetBrains Rider
.idea/
*.sln.iml
20 changes: 20 additions & 0 deletions GitVersion.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
assembly-versioning-scheme: MajorMinorPatchTag
mode: ContinuousDeployment
next-version: 1.4.1
branches:
master:
mode: ContinuousDeployment
tag: rc
increment: Patch
prevent-increment-of-merged-branch-version: true
track-merge-target: false
develop:
mode: ContinuousDeployment
tag: alpha
increment: Patch
prevent-increment-of-merged-branch-version: false
track-merge-target: true
pull-request:
mode: ContinuousDelivery
ignore:
sha: []
42 changes: 42 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# configuration for develop/CI branch

-
branches:
only:
- dev
- master

skip_tags: true
image: Visual Studio 2017
configuration: Release
platform: Any CPU

pull_requests:
do_not_increment_build_number: false

install:
- choco install gitversion.portable -pre -y

before_build:
- ps: cd src
- ps: .paket\paket restore
- ps: cd..
- ps: gitversion /l console /output buildserver /updateAssemblyInfo

build:
verbosity: minimal

after_build:
- ps: cd src
- ps: .paket\paket pack --version $env:GitVersion_LegacySemVerPadded bin
- ps: cd..

cache:
- src\packages -> **\packages.config
# - '%USERPROFILE%\.nuget\packages -> **\project.json'

artifacts:
- path: \src\bin\MahApps.Metro.SimpleChildWindow.*.nupkg
- path: \src\bin\Release\MahApps.Metro.SimpleChildWindow.Demo\
name: MahApps.Metro.SimpleChildWindow.Demo.$(GitVersion_LegacySemVerPadded)
type: zip
Loading

0 comments on commit 725b6e7

Please sign in to comment.