Skip to content

Commit

Permalink
converted to netstandard 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ghuntley committed Nov 30, 2016
1 parent 45d7e65 commit 6f0f8b2
Show file tree
Hide file tree
Showing 17 changed files with 459 additions and 268 deletions.
12 changes: 8 additions & 4 deletions .gitignore
Expand Up @@ -41,8 +41,10 @@ TestResult.xml
dlldata.c

# DNX
project.lock.json
*.lock.json
artifacts/
*.nuget.props
*.nuget.targets

*_i.c
*_p.c
Expand Down Expand Up @@ -138,7 +140,7 @@ 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
Expand Down Expand Up @@ -233,5 +235,7 @@ _Pvt_Extensions
# Tools
tools/

# Packaging
packaging/
# ReactiveUI
artifacts/
src/CommonAssemblyInfo.cs
src/ReactiveUI.Events/Events_*.cs
18 changes: 0 additions & 18 deletions DEPLOYMENT.md

This file was deleted.

24 changes: 24 additions & 0 deletions GitReleaseManager.yaml
@@ -0,0 +1,24 @@
create:
include-footer: true
footer-heading: Where to get it
footer-content: You can download this release from [nuget.org](https://www.nuget.org/packages/akavache/{milestone})
footer-includes-milestone: true
milestone-replace-text: '{milestone}'
export:
include-created-date-in-title: true
created-date-string-format: MMMM dd, yyyy
perform-regex-removal: true
regex-text: '### Where to get it(\r\n)*You can .*\)'
multiline-regex: true
issue-labels-include:
- Breaking change
- Feature
- Bug
- Improvement
- Documentation
issue-labels-exclude:
- Build
issue-labels-alias:
- name: Documentation
header: Documentation
plural: Documentation
14 changes: 14 additions & 0 deletions GitVersion.yml
@@ -0,0 +1,14 @@
assembly-versioning-scheme: None
branches:
master:
mode: ContinuousDelivery
tag:
increment: Patch
prevent-increment-of-merged-branch-version: true
track-merge-target: false
dev(elop)?(ment)?$:
mode: ContinuousDeployment
tag: alpha
increment: Minor
prevent-increment-of-merged-branch-version: false
track-merge-target: true
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -2,7 +2,7 @@
# GeoCoordinate [![Build status](https://ci.appveyor.com/api/projects/status/k18x42mpj4bp93rn?svg=true)](https://ci.appveyor.com/project/ghuntley/geocoordinate)


GeoCoordinate is a Portable Class Library compatible implementation of System.Device.Location.GeoCoordinate. It is an exact 1:1 API compliant implementation and will be supported until MSFT [sees it fit to embed the type](https://visualstudio.uservoice.com/forums/121579-visual-studio-2015/suggestions/5221530-geocoordinate-class-included-in-portable-class-lib). Which at that point this implementation will cease development/support and you will be able to simply remove this package and everything will still work.
GeoCoordinate is a portable class library (in v1.1.x) or netstandard v1.1 (from v2.x.x) compatible implementation of System.Device.Location.GeoCoordinate. It is an exact 1:1 API compliant implementation and will be supported until MSFT [sees it fit to embed the type](https://visualstudio.uservoice.com/forums/121579-visual-studio-2015/suggestions/5221530-geocoordinate-class-included-in-portable-class-lib). Which at that point this implementation will cease development/support and you will be able to simply remove this package and everything will still work.

# Supported Platforms

Expand Down
5 changes: 0 additions & 5 deletions RELEASENOTES.md

This file was deleted.

64 changes: 51 additions & 13 deletions appveyor.yml
@@ -1,14 +1,52 @@
# configuration for "master" branch
-
configuration: Release
branches:
only:
- master
version: 1.0.{build}
environment:
GITHUB_USERNAME:
secure: 0Q9MvUId56SizmZwCf0cgg==
GITHUB_TOKEN:
secure: R3xA9iMXfUUtFd3wuL38pcDa0/BjjpBvNcGShr5LRibZtBoOVSH47Jat75rwaGur
NUGET_SOURCE: https://www.nuget.org/api/v2/package
NUGET_APIKEY:
secure: 0g2AqQxgiAIFhqoJbbmEPrJa15Z8U5xYT6vQe43Gocuxbjw74hBAIKbU+Cj65UNd
build_script:
- ps: >-
./bootstrap.ps1
init:
- git config --global core.autocrlf input
build_script:
- cmd: build.cmd BuildApp
# - cmd: build.cmd UnitTests
- cmd: build.cmd CreatePackages
#test: off
nuget:
account_feed: true
project_feed: true
artifacts:
- path: 'packaging\*.nupkg'
name: GeoCoordinatePackages
./build.cmd
artifacts:
- path: artifacts/*
- path: '**/bin/*'
test: off

# configuration for "develop" branch
-
configuration: Development
branches:
except:
- master

version: 1.0.{build}
environment:
NUGET_SOURCE: https://www.myget.org/F/akavache/api/v2/package
NUGET_APIKEY:
secure: YP/3KxC2ffsuHNaolPXj66JVGzSjON9FcR2S2OEzn9c6SV14oPzUh1ySyeT+G+aA
build_script:
- ps: >-
./bootstrap.ps1
./build.cmd
artifacts:
- path: artifacts/*
- path: '**/bin/*'
test: off

# "fall back" configuration for all other branches
# no "branches" section defined
# do not deploy at all
-
configuration: Development

0 comments on commit 6f0f8b2

Please sign in to comment.