Skip to content

Commit

Permalink
Merge pull request #42 from henkmollema/netcore-rtm
Browse files Browse the repository at this point in the history
Update to .NET Core RTM
  • Loading branch information
henkmollema authored Jul 7, 2016
2 parents 4d68661 + cd583ee commit dae298c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,12 @@ addons:
- libunwind8
- zlib1g
before_install:
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install icu4c; brew install openssl; brew link --force openssl; fi
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; brew link --force openssl; fi
mono:
- 4.0.5
os:
- linux
- osx
osx_image: xcode7.1
script:
- ./build.sh --quiet verify
env:
- KOREBUILD_TEST_SKIPMONO=1
- ./build.sh --quiet verify
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ cd $PSScriptRoot
$repoFolder = $PSScriptRoot
$env:REPO_FOLDER = $repoFolder

$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/dev.zip"
$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/1.0.0.zip"
if ($env:KOREBUILD_ZIP)
{
$koreBuildZip=$env:KOREBUILD_ZIP
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
repoFolder="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $repoFolder

koreBuildZip="https://github.com/aspnet/KoreBuild/archive/dev.zip"
koreBuildZip="https://github.com/aspnet/KoreBuild/archive/1.0.0.zip"
if [ ! -z $KOREBUILD_ZIP ]; then
koreBuildZip=$KOREBUILD_ZIP
fi
Expand Down
1 change: 1 addition & 0 deletions src/Dommel/DommelMapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1134,6 +1134,7 @@ protected virtual IEnumerable<PropertyInfo> FilterComplexTypes(IEnumerable<Prope
/// </summary>
public class DefaultPropertyResolver : PropertyResolverBase
{
/// <inheritdoc />
public override IEnumerable<PropertyInfo> ResolveProperties(Type type)
{
return FilterComplexTypes(type.GetProperties());
Expand Down
13 changes: 7 additions & 6 deletions src/Dommel/project.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"version": "1.6.0",
"version": "1.6.1",
"title": "Dommel",
"description": "Simple CRUD operations for Dapper.",
"authors": [ "henkmollema" ],
"copyright": "© 2016 Henk Mollema",
"authors": [ "Henk Mollema" ],
"copyright": "Copyright © Henk Mollema 2016",
"packOptions": {
"owners": [ "Henk Mollema" ],
"summary": "Simple CRUD operations for Dapper.",
"tags": [ "dommel", "crud", "dapper", "database", "orm" ],
"projectUrl": "https://github.com/henkmollema/Dommel",
Expand All @@ -16,7 +17,7 @@
},

"dependencies": {
"Dapper": "1.50.0-rc2b"
"Dapper": "1.50.0"
},

"frameworks": {
Expand All @@ -37,8 +38,8 @@
"define": [ "COREFX" ]
},
"dependencies": {
"NETStandard.Library": "1.5.0-rc2-24027",
"System.ComponentModel.Annotations": "4.1.0-rc2-24027"
"NETStandard.Library": "1.6.0",
"System.ComponentModel.Annotations": "4.1.0"
}
}
},
Expand Down

0 comments on commit dae298c

Please sign in to comment.