Skip to content
This repository was archived by the owner on Apr 19, 2023. It is now read-only.

Commit 8bad456

Browse files
authored
Update build scripts (#121)
1 parent 121ee50 commit 8bad456

File tree

9 files changed

+16
-39
lines changed

9 files changed

+16
-39
lines changed

.appveyor.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,11 @@
11
version: '{build}'
22
pull_requests:
33
do_not_increment_build_number: true
4-
image: Visual Studio 2017
5-
init:
6-
- git config --global core.autocrlf true
4+
image: Visual Studio 2019
75
build_script:
8-
- ps: .\build.ps1
9-
clone_depth: 1
6+
- cmd: dotnet test
107
test: off
11-
deploy: off
128
environment:
139
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
14-
DOTNET_CLI_TELEMETRY_OPTOUT: 1
15-
CI: true
16-
branches:
17-
only:
18-
- master
10+
DOTNET_CLI_TELEMETRY_OPTOUT: true
11+
CI: true

.travis.yml

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
11
language: csharp
22
mono: none
3-
dotnet: 2.1.403
4-
dist: trusty
3+
dotnet: 3.1
4+
dist: xenial
55
env:
66
global:
7-
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
8-
- DOTNET_CLI_TELEMETRY_OPTOUT: true
9-
os:
10-
- linux
11-
- osx
12-
branches:
13-
only:
14-
- master
15-
before_script:
16-
- chmod +x ./build.sh
7+
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
8+
- DOTNET_CLI_TELEMETRY_OPTOUT=true
179
script:
18-
- ./build.sh
10+
- dotnet test

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 Henk Mollema
3+
Copyright (c) 2014 Henk Mollema
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Dapper.FluentMap
2-
Provides a simple API to fluently map POCO properties to database columns when using Dapper.
1+
# Dapper.FluentMap
2+
Provides a simple API to fluently map POCO properties to database columns when using Dapper.
33

44
<hr>
55

@@ -29,7 +29,7 @@ public class ProductMap : EntityMap<Product>
2929
// Map property 'Name' to column 'strName'.
3030
Map(p => p.Name)
3131
.ToColumn("strName");
32-
32+
3333
// Ignore the 'LastModified' property when mapping.
3434
Map(p => p.LastModified)
3535
.Ignore();
@@ -124,7 +124,7 @@ public class ProductMap : DommelEntityMap<TEntity>
124124
public ProductMap()
125125
{
126126
ToTable("tblProduct");
127-
127+
128128
// ...
129129
}
130130
}

build.cmd

Lines changed: 0 additions & 2 deletions
This file was deleted.

build.ps1

Lines changed: 0 additions & 2 deletions
This file was deleted.

build.sh

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/Dapper.FluentMap.Dommel/Dapper.FluentMap.Dommel.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>Dapper.FluentMap extension for Dommel support.</Description>
4-
<Copyright>Copyright © Henk Mollema 2017</Copyright>
4+
<Copyright>Copyright © Henk Mollema 2014</Copyright>
55
<VersionPrefix>2.0.0</VersionPrefix>
66
<Authors>Henk Mollema</Authors>
77
<TargetFrameworks>netstandard2.0</TargetFrameworks>

src/Dapper.FluentMap/Dapper.FluentMap.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>Simple API to fluently map POCO properties to database columns when using Dapper.</Description>
4-
<Copyright>Copyright © Henk Mollema 2017</Copyright>
4+
<Copyright>Copyright © Henk Mollema 2014</Copyright>
55
<VersionPrefix>2.0.0</VersionPrefix>
66
<Authors>Henk Mollema</Authors>
77
<TargetFrameworks>netstandard2.0</TargetFrameworks>

0 commit comments

Comments
 (0)