This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from henkmollema/msbuild
Migrate to MSBuild and VS2017
- Loading branch information
Showing
17 changed files
with
95 additions
and
229 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,24 @@ | ||
language: csharp | ||
sudo: required | ||
sudo: false | ||
dist: trusty | ||
addons: | ||
apt: | ||
packages: | ||
- gettext | ||
- libcurl4-openssl-dev | ||
- libicu-dev | ||
- libssl-dev | ||
- libunwind8 | ||
- zlib1g | ||
env: | ||
global: | ||
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | ||
- DOTNET_CLI_TELEMETRY_OPTOUT: 1 | ||
mono: | ||
- 4.0.5 | ||
mono: none | ||
os: | ||
- linux | ||
- osx | ||
osx_image: xcode7.3 | ||
osx_image: xcode8.2 | ||
branches: | ||
only: | ||
- master | ||
- release | ||
- dev | ||
- /^(.*\/)?ci-.*$/ | ||
before_install: | ||
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi | ||
before_script: | ||
- chmod +x ./build.sh | ||
script: | ||
- ./build.sh --quiet verify | ||
- ./build.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
init: | ||
- git config --global core.autocrlf true | ||
build_script: | ||
- build.cmd verify | ||
- ps: .\build.ps1 | ||
clone_depth: 1 | ||
test: off | ||
deploy: off | ||
deploy: off | ||
os: Visual Studio 2017 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
src/Dapper.FluentMap.Dommel/Dapper.FluentMap.Dommel.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Description>Dapper.FluentMap extension for Dommel support.</Description> | ||
<Copyright>Copyright © Henk Mollema 2017</Copyright> | ||
<VersionPrefix>1.4.5</VersionPrefix> | ||
<Authors>Henk Mollema</Authors> | ||
<TargetFrameworks>net45;net451;netstandard1.3</TargetFrameworks> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<PackageTags>dapper;fluentmap;dommel</PackageTags> | ||
<PackageProjectUrl>https://github.com/henkmollema/Dapper-FluentMap</PackageProjectUrl> | ||
<PackageLicenseUrl>https://github.com/henkmollema/Dapper-FluentMap/blob/master/LICENSE</PackageLicenseUrl> | ||
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.0</NetStandardImplicitPackageVersion> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Dapper.FluentMap\Dapper.FluentMap.csproj" /> | ||
<PackageReference Include="Dommel" Version="1.8.0" /> | ||
</ItemGroup> | ||
</Project> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<Description>Simple API to fluently map POCO properties to database columns when using Dapper.</Description> | ||
<Copyright>Copyright © Henk Mollema 2017</Copyright> | ||
<VersionPrefix>1.5.3</VersionPrefix> | ||
<Authors>Henk Mollema</Authors> | ||
<TargetFrameworks>net45;net451;netstandard1.3</TargetFrameworks> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<PackageTags>c#;dapper;mapping;fluentmap</PackageTags> | ||
<PackageProjectUrl>https://github.com/henkmollema/Dapper-FluentMap</PackageProjectUrl> | ||
<PackageLicenseUrl>https://github.com/henkmollema/Dapper-FluentMap/blob/master/LICENSE</PackageLicenseUrl> | ||
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.0</NetStandardImplicitPackageVersion> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Dapper" Version="1.50.2" /> | ||
</ItemGroup> | ||
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' "> | ||
<DefineConstants>$(DefineConstants);COREFX</DefineConstants> | ||
</PropertyGroup> | ||
</Project> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.